Hi,
I want to extract the data inside an xmlData to a string.
Let's say I (for example) I have this XML data:
<text display-inline="yes">This<b>is</b>only<ref>a</ref><i>sample</i></text>
using XmlNode.InnerTe xt(), how can I achieve this result?
string[0] = This
string[1] = <b>is</b>
string[2] = only
string[3] = <ref>a</ref>
string[4] = <i>sample</i>
I am still in the process studying XML on C# any help would be appreciated.
Thanks,
I want to extract the data inside an xmlData to a string.
Let's say I (for example) I have this XML data:
<text display-inline="yes">This<b>is</b>only<ref>a</ref><i>sample</i></text>
using XmlNode.InnerTe xt(), how can I achieve this result?
string[0] = This
string[1] = <b>is</b>
string[2] = only
string[3] = <ref>a</ref>
string[4] = <i>sample</i>
I am still in the process studying XML on C# any help would be appreciated.
Thanks,
Comment