is it possible to write a xsl such that the following xml string
<file><1><a>value of a</a><1><b>value of b</b></file>
will become
<file>
<1>
<a>value of a</a>
</1>
<b>value of b</b>
</file>
any suggestions, basically i'm stuck at how to "capture" the tags and how to insert indentation?
any kind soul pls advise
<file><1><a>value of a</a><1><b>value of b</b></file>
will become
<file>
<1>
<a>value of a</a>
</1>
<b>value of b</b>
</file>
any suggestions, basically i'm stuck at how to "capture" the tags and how to insert indentation?
any kind soul pls advise