I want to replace a string such "how r u" in file test.xml with a string "i am fine" in another file xy.xml.using regular expression in ms build.

ie i have to read string from one file(xy.xml) and replace it in another file test.xml. so please provide necessary steps to solve this issue with example

link|improve this question

anyone please help me to solve this problem – Nithin Oct 23 '11 at 16:12
feedback

1 Answer

up vote 0 down vote accepted

Use ReadLinesFromFile task to get replacement string from the xy.xml file. Check this

Then use value from xy.xml as a replacement string for FileUpdate task. Check this

And put it all together ;)

link|improve this answer
i have to read a particular node with attribute name object from file and replace this node another one? how to handle this issue? – Nithin Nov 2 '11 at 13:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.