[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] Date


Subject: RE: [xsl] Date
From: "Stevenson Ngila" <Stevenson@xxxxxxxxxxxxxxxxxxxxxx>
Date: Mon, 2 Dec 2002 10:12:27 +0300

<xsl:if test="root/Row[@id='0']/Col[@name]='MfgDate'">

</xsl:if>

-----Original Message-----
From: Vijaya Kumar Y [mailto:vijayay@xxxxxxxxxxxxxx]
Sent: 02 December 2002 09:55
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Cc: Stevenson@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] Date


Sorry , Sorry the question was how to identify that it is a date value(or in
the other words how do u decide whether it is date)

like in any other languages we check like IsDate("23122002") ,
in same way can i know whether it is a date based on that i would like to
format the  date part

regards
Vijay

-----Original Message-----
From: Stevenson Ngila [mailto:Stevenson@xxxxxxxxxxxxxxxxxxxxxx]
Sent: Monday, December 02, 2002 11:33 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] Date


Try:

<xsl:value-of
select="substring(Row[@id='0']/Col[@name='MfgDate'][@value],1,2 )"
<xsl:value-of
select="substring(Row[@id='0']/Col[@name='MfgDate'][@value],3,2 )"
<xsl:value-of
select="substring(Row[@id='0']/Col[@name='MfgDate'][@value],5,4 )"

Am not very sure about the path, but the general idea is to use the
substring function.





 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



Current Thread