M
mikea_59
I would like to use XSLT to translate some tagged value text to XML
elements like this:
Input Doc:
<data>x=1.234 y=ABC z="Hello World"</data>
Output Doc:
<x>1.234</value>
<y>ABC</y>
<z>"Hello World"</z>
Is XSLT up to the task? What would it look like? Most of the XSLT
string processing code I've seen looks very verbose - can't be too
efficient.
elements like this:
Input Doc:
<data>x=1.234 y=ABC z="Hello World"</data>
Output Doc:
<x>1.234</value>
<y>ABC</y>
<z>"Hello World"</z>
Is XSLT up to the task? What would it look like? Most of the XSLT
string processing code I've seen looks very verbose - can't be too
efficient.