Hello, i have a problem with my xslt and i hope you can help me
i have an XML Tag "ausgabe" in this tag is some text and the dae from the hole week"
XML Code:
Code:
<ausgabe>Gültig vom 03.10. bis 08.10.2011</ausgabe>
Now i need the Date only from Wednessday, means i need a 05.10 exept of the 03.10
Is that possible?
That is my XSLT code until now:
Code:
<xsl:element name="ausgabe">
<xsl:value-of select="normalize-space(Root/ausgabe)"/>
<!--<xsl:value-of select="substring(Root/ausgabe,11, 2)" />-->
</xsl:element>