I posted earlier on how I needed to convert an XML I created into a String format for some vendor software. I have done that thanks to earthanfire's help.
Problem is the vendor software is being very picky. It doesn't even seem to like the encoding tag for XML, which makes no sense because they require it to be in an XML format.
Is there any String manipulation functions that I can use to do this? Is it supposed to be Split?
Is this the correct way to do this? It returns an array of strings, so how do I reference the first instance.
Problem is the vendor software is being very picky. It doesn't even seem to like the encoding tag for XML, which makes no sense because they require it to be in an XML format.
Code:
<?xml version="1.0" encoding="utf-8"?>
Is there any String manipulation functions that I can use to do this? Is it supposed to be Split?
Code:
Split(filecontents,"<?xml version='1.0' encoding='utf-8'?>")
Is this the correct way to do this? It returns an array of strings, so how do I reference the first instance.