Restructure XML nodes using XSLT
- by Brian
Looking to use XSLT to transform my XML. The sample XML is as follows:
<root>
<info>
<firstname>Bob</firstname>
<lastname>Joe</lastname>
</info>
<notes>
<note>text1</note>
<note>text2</note>
</notes>
<othernotes>
<note>text3</note>
…