XML + DOM + replace text in element
- by yael
from XML
< NET ID="10.10.10.10, 255.255.255.0" /
I need to replace the text 10.10.10.10, 255.255.255.0
with 192.9.1.1, 255.0.0.0 by VB + DOM script
so the final line in the XML should be
< NET ID="192.9.1.1, 255.0.0.0" /
THX