manipulate text as xml format
I have string contains xml format, how can I read this value with xml command
e.g:
dim strxml as string
strxml = "<test1>1</test1><test2>2</test>2</test2>"
how can reas test2 tag value? please.
how can reas test2 tag value? please.
In particular:
http://samples.gotdotnet.com/quickstart/howto/doc/Xml/ReadXMLStream.aspx
dim x as xmldocument
x.loadxml("<test1>1</test><test2>2</test2>")
now u can manipulate x as xml document