H
himgi
Hi to all I need to transform an xml document from a format to another.
In my source XML I have a tag value that is a list of codes. I give u
an example:
<mytag>1,2,33,44,55,6,7,88,99,...,nn</mytag>
Now I need to have this tag transformed as follow:
<MyNewTags>
<MyNewTag>1</MyNewTag>
<MyNewTag>2</MyNewTag>
<MyNewTag>33</MyNewTag>
<MyNewTag>44</MyNewTag>
<MyNewTag>55</MyNewTag>
<MyNewTag>6/MyNewTag>
<MyNewTag>7</MyNewTag>
<MyNewTag>88</MyNewTag>
<MyNewTag>99</MyNewTag>
....
<MyNewTag>nn</MyNewTag>
</MyNewTags>
How do i do that with XSLT?
Or when can I lookup to find the solution?
I did not find anything on the W3C Tutorial about XSLT..
Thanks in advance, Himgi.
In my source XML I have a tag value that is a list of codes. I give u
an example:
<mytag>1,2,33,44,55,6,7,88,99,...,nn</mytag>
Now I need to have this tag transformed as follow:
<MyNewTags>
<MyNewTag>1</MyNewTag>
<MyNewTag>2</MyNewTag>
<MyNewTag>33</MyNewTag>
<MyNewTag>44</MyNewTag>
<MyNewTag>55</MyNewTag>
<MyNewTag>6/MyNewTag>
<MyNewTag>7</MyNewTag>
<MyNewTag>88</MyNewTag>
<MyNewTag>99</MyNewTag>
....
<MyNewTag>nn</MyNewTag>
</MyNewTags>
How do i do that with XSLT?
Or when can I lookup to find the solution?
I did not find anything on the W3C Tutorial about XSLT..
Thanks in advance, Himgi.