This transformation:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:my="my:my" exclude-result-prefixes="my xs">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="vSegments" select=
"tokenize(translate(/*, ' 	

', ''),
'~')
[.]
"/>
<xsl:template match="/*">
<xsl:sequence select="my:buildXml($vSegments)"/>
</xsl:template>
<xsl:function name="my:buildXml">
<xsl:param name="pSegments" as="xs:string*"/>
<xsl:element name="{$pSegments[1]}">
<xsl:sequence select="my:buildXml2($pSegments[position() >1])"/>
</xsl:element>
</xsl:function>
<xsl:function name="my:buildXml2">
<xsl:param name="pSegments" as="xs:string*"/>
<xsl:for-each-group select="$pSegments"
group-adjacent="substring-before(concat(.,'/'),'/')">
<xsl:element name="{current-grouping-key()}">
<xsl:variable name="vsubSegments" select=
"for $subSeg in current-group(),
$subSeqTail in substring-after($subSeg, '/')
return
$subSeqTail[.]
"/>
<xsl:sequence select=
"my:buildXml2($vsubSegments)"/>
</xsl:element>
</xsl:for-each-group>
</xsl:function>
</xsl:stylesheet>
when applied on the following XML document (using a slightly more complicated string to make this even more challenging):
<t>
author
~time
~assignedAuthor
~assignedAuthor/id
~assignedAuthor/addr
~assignedAuthor/telecom
~assignedAuthor/assignedPerson/name
~assignedAuthor/assignedPerson/address~
</t>
produces the wanted, correct result:
<author>
<time/>
<assignedAuthor>
<id/>
<addr/>
<telecom/>
<assignedPerson>
<name/>
<address/>
</assignedPerson>
</assignedAuthor>
</author>
Explanation:
Tokenization of the sequence of "segments". Use of tokenize().
Grouping (xsl:for-each-group) with the attribute group-adjacent using as grouping key the first "sub-segment".
For every group building the XML subtree recursively. Use of current-grouping-key() and current-group()
author~time, butassignedAuthor~assignedAuthor/id? Or, in other words, whyassignedAuthoris repeated, butauthoris not? Shouldn't beauthor~author/time~author/assignedAuthor~...– khachik Dec 23 '11 at 20:01