Hi i have xml file with nodes that could hold any type of input:
for example
XML code:
<Code>1.2.3</Code>
<name>John</name>
</Employee>
<Code>11.2.4</Code>
<name>John</name>
</Employee>
<Code>2.3.7</Code>
<name>John</name>
</Employee>
OR
<Code>a.1.5</Code>
<name>John</name>
</Employee>
<Code>a.2.1</Code>
<name>John</name>
</Employee>
<Code>c.4.2</Code>
<name>John</name>
</Employee>
The problem is that i can get any type of input
Im looking for a way to tokenize the input and compare each token based on its type...
How can i do it (or how can i do the sort with other method???)
i need to sort with xslt (xsl file)
Thanks ahead
Daniel