I have an XML document that references a namespace that is no available:
<microplateDoc xmlns="http://moleculardevices.com/microplateML">
...my data is here...
</microplateDoc>
I have a script that reads it fine, but only when I delete the two above tags, otherwise it reads it all screwed up. Is it ok just to ignore it? I'm thinking of a writing another script to go through all of my input files and deleting these two lines, but I think there may be a better way?
If I did go through all my datafiles and deleted these two lines, what is the best way to do it with a script? I presume just open each file, search for those terms, delete them, save file, can you think of a better way? thanks.