M
MichalSody
Could someboby help me please with this simple problem ?
I've got a resultvalue as string in XML-format:
string result = <?xml version="1.0" encoding="ISO-8859-1"
?><HITLIST><KEYSIZE>7</KEYSIZE><NKEYS>0000000007</NKEYS><KEYSET>0011028001178200185320027592002762800278510033581</KEYSET><STATUS>READY</STATUS></HITLIST>
and I would like to extract these values:
KEYSIZE - that number 7
NKEYS - that number 7
and KEYSET - whole string with ID's
is there a better way than do this with string operations like substring ?
I've got a resultvalue as string in XML-format:
string result = <?xml version="1.0" encoding="ISO-8859-1"
?><HITLIST><KEYSIZE>7</KEYSIZE><NKEYS>0000000007</NKEYS><KEYSET>0011028001178200185320027592002762800278510033581</KEYSET><STATUS>READY</STATUS></HITLIST>
and I would like to extract these values:
KEYSIZE - that number 7
NKEYS - that number 7
and KEYSET - whole string with ID's
is there a better way than do this with string operations like substring ?