J
JezB
I have a string which contains some xml text (either in one long line or
split into one line per data element), eg.
"<tag1>some data</tag1><tag2>some more data</tag2>"
or
"<tag1>some data</tag1> (embedded \n
character)
<tag2>some more data</tag2>"
Does the framework provide anything to easily parse this text to get at the
tags and data elements one by one ? I could of course write my own but Im
sure there must be something already there ... I just need to find it.
split into one line per data element), eg.
"<tag1>some data</tag1><tag2>some more data</tag2>"
or
"<tag1>some data</tag1> (embedded \n
character)
<tag2>some more data</tag2>"
Does the framework provide anything to easily parse this text to get at the
tags and data elements one by one ? I could of course write my own but Im
sure there must be something already there ... I just need to find it.