I am not very good at batch scripting which is why I need help with a task as simple as this.
What I want to do is to scan a file, look for a line matching a specific pattern (need not be regexp) and when it is found, change it.
The line I'm looking for looks like this:
<ApplicationVersion>1.29.586.5771</ApplicationVersion>
And I want to change it to this:
<ApplicationVersion>1.31.633.6832</ApplicationVersion>
Of course, the numbers may be something else. Is there a nice way of doing this in batch without changing anything else in the file?