Is it possible to change given XML structure
<Cars>
<Car>Honda</Car>
<Car>Ferrari</Car>
</Cars>
with XLST to
<Cars>
<Honda></Honda>
<Ferrari></Ferrari>
</Cars>
I know XSLT a little, but I'm not sure how to create variable tags.
Thanks everybody. I appreciate all three answers and have up voted them.
<xsl:template match="/">.