I have a XML parser (finished) could deal with a subset of XML files. However, currently I have a XML file could not directly process by my parser.
There are two options to me:
1). I have to add more code on my parser;
2). maybe I can do some pre-processing before I feed the XML file into my parser;
My Question is:
Is there any way to modify XML file (delect tags and create entities)?
BTW: the output of pre-processing should be also XML file.