i was board yesterday so i wrote the following program. it finds the xml file "example.xml". it finds the "tag and information" and lets you change the info between the opening and closing tags.unfortunately i have to find out how to determine the length of the tag name.Plus when i rewrite the information if isnt the same size, it messes with the code.
It's a really bad idea to directly modify a file. The most common method is to load it completely to memory, do the appropriate changes, then write it back.