Hi,
I've got an xml which shoule be transformed using XSLT but there are "." in the Tag and in cause of that it doesn't work. But the . is allowed in XML-Tags. Can anybody give me a hint on transforming such a file: XML:
<root.element>
<test.element>Hello World</test.element>
</root.element>
XSLT:
<xsl:template match="/">
<test><xsl:value-of select="root.element/test.element"/></test>
</xsl:template>
Thanks for your help.
marc