Input xml:
....
<p>
<b>Sample text:</b>
<nbsp/>these are some sample text<i>text continues here</i>
</p>
...
out put I need when I read the <p> tag from an xsl document is:
<b>Sample text:</b>
<nbsp/>these are some sample text<i>text continues here</i>
when I read the input xml from an xsl document to process and convert to another xml doc, is it possible to read the strings under the current node along with all child nodes under that
....
<p>
<b>Sample text:</b>
<nbsp/>these are some sample text<i>text continues here</i>
</p>
...
out put I need when I read the <p> tag from an xsl document is:
<b>Sample text:</b>
<nbsp/>these are some sample text<i>text continues here</i>
when I read the input xml from an xsl document to process and convert to another xml doc, is it possible to read the strings under the current node along with all child nodes under that
Comment