I am looking to write a method where the input is an string representation of the xml. Below is the example:
<input>
<name>John</name>
<some_field>0x00</some_field>
</input>
Now, I need to convert this input string to something like:
John|NULL
Is this possible?