I have an xml with several parent-child structures. One structure is like this:
<parent>
<child>Sam</child>
<child>Tom</child>
<child>Joe</child>
</parent>
I want the result to look like this:
<parent>
<child>Sam;Tom;Joe</child>
</parent>
How do I achieve the result in XSLT?
In XSLT 2.0 you can write: