Re: [xsl] Parsing day out of date format 10/12/00

Subject: Re: [xsl] Parsing day out of date format 10/12/00
From: "Ritu" <rkama@xxxxxxxxxxx>
Date: Wed, 12 Feb 2003 15:00:08 -0600
  To get the month let's say - you would do

    <xsl:value-of select="substring(BirthDate,1,2)" />


Similarly use substring to get other parts of the date and construct the
result tree
Ritu Kama
Sarvega Inc
745, McLintock Dr
Burr Ridge
IL - 60527
----- Original Message -----
From: "James Hunt" <arcjah@xxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Wednesday, February 12, 2003 2:44 PM
Subject: [xsl] Parsing day out of date format 10/12/00


> How would I go about parsing some xml like this:
>
> <BirthDate>10/12/00</BirthDate>
>
> to:
>
> <BirthDate>
>    <BirthMonth>10</BirthMonth>
>    <BirthDay>12</BirthDay>
>    <BirthYear>00</BirthYear>
> </BirthDate>
>
> using xsl?
>
>
> Thanks,
> James
>
>
>  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