Hi all,
How can I look for lines of a certain structure in an xml file and remove dashes in them?
The lines are of this structure:
Code:
<box>123456-7890</box>
I want to find all these lines and remove the dash so i can get:
Code:
<box>1234567890</box>
They are too many to do manually. Is there some tool or script that can automate this task?
Thanks in advance.