I have following xml.
<Name>
<First>john</First>
<Last>smith</Last>
</Name>
I want to capitalize first letter and out put in following formate.
<FullName>John Smith</FullName>
Thank you in advance.
I have following xml.
<Name>
<First>john</First>
<Last>smith</Last>
</Name>
I want to capitalize first letter and out put in following formate.
<FullName>John Smith</FullName>
Thank you in advance.
I. XSLT 2.0 solution:
when this transformation is applied on the provided XML document:
the wanted, correct result is produced:
II. XSLT 1.0 solution:
Try: