XSLT: Date and Time concat
Hello,
In my input xml I have Date value in the format 'YYYYMMDD' example '20130311' and Time as 'HHmmSS' example '113400'
After applying XSLT in the output XML it should be transformed to YYYY-MM-DDTHH:mm:SS . '2013-03-11T11:34:00'
The minimum value for time can be 100 so i have to format the time as 00:01:00'.
Right now to achieve this im using substring.
Kindly let me know if I can use any other method with XSLT 2.0.
Thanks
|