Link to home
Start Free TrialLog in
Avatar of gromul
gromul

asked on

Parsing text input files

I have some input files that I need to update in certain places.

The old format is something like this:
<start param1="..." param2="" param3="" param4="false" />

The new format should look something like this:
<start param1="..." param2="" newParam="true" param3="" param4="false" />

Some sample code to accomplish this would be helpful.

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of Minuteman
Minuteman

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gromul
gromul

ASKER

Thanks. I ended up splitting a string with " as delimeter.