I have my source XML like below
<contents>
<content>AuthorInformation</content>
<content>PersonInformation</content>
<content>PersonPersonalInformation</content>
<content>GurdianDetails</content>
</contents>
I would like to transform above XML into
<contents>
<content>Author Information</content>
<content>Person Information</content>
<content>Person Personal Information</content>
<content>Gurdian Details</content>
</contents>
wherever in source xml file content element data is having upper case letter I would like to prefix space inbetween. Can I have the XSLT 2.0 sample how I can achieve this.