Let's say I have an existing trivial XML file called "MyData.xml" that contains the following:
<?xml version="1.0" encoding="utf-8" ?> <myElement>foo</myElement>
I want to change the text value of "foo" to "bar", as a result we get the following:
<?xml version="1.0" encoding="utf-8" ?> <myElement>bar</myElement>
As soon as I finish, I want to save the changes.
What is the easiest and easiest way to accomplish all this?
source share