[
Lists Home |
Date Index |
Thread Index
]
Hi,
This should be a simple XSLT question. If I have the following xml:
<Root>
<Name>Steve White</Name>
<Addr>
<Street>123 Main Road</Street>
<City>Mycity</City>
<State>CA</State>
<Zip>12345</Zip>
</Addr>
<Email>swhite@myemail.com</Email>
</Root>
which I would like to see the output as:
Steve White, swhite@myemail.com
123 Main Road
Mycity, CA 12345
I could use template: <xsl:template match="Name"> to get the name
and another tempate to get the Email, but when it gets to the Email,
the address is already processed or printed. I have tried to "copy"
as well as "copy-of" but they just copy the element with and without
the children. I also tried with the xpath starting from the "/" but no go.
I could also use variable to hold all the values and then print them out,
but my real xml is quite long and don't think using variables would help.
Any idea how should I go about?
Thanks in advanced.
--Wo
|