Zargo
Programmer
- Mar 21, 2005
- 109
Hi,
I have an xml file and i want to select the first 10 characters in my XSL file from an element in the xml file is this possible?
I'm using a XML parser in Visual Basic 6.
How to do this. My XML file is look like:
<Invoice>
<Header>
<DocumentdateTime>2005-11-15T00:00:00</DocumentdateTime>
</Header>
</Invoice>
I have tried the following in my XSL file:
<xsl:value-of select="[substring,//Invoice/Header/DocumentDateTime,10]"/>
Without succes...Does anybody know how to select this?
Thanks in advance...
I have an xml file and i want to select the first 10 characters in my XSL file from an element in the xml file is this possible?
I'm using a XML parser in Visual Basic 6.
How to do this. My XML file is look like:
<Invoice>
<Header>
<DocumentdateTime>2005-11-15T00:00:00</DocumentdateTime>
</Header>
</Invoice>
I have tried the following in my XSL file:
<xsl:value-of select="[substring,//Invoice/Header/DocumentDateTime,10]"/>
Without succes...Does anybody know how to select this?
Thanks in advance...