I'm using XSLT 1.0 and need to convert a date format from dd/mm/yyyy to Month yyyy, e.g. January 2011.
Could anyone provide a sample for this? I can find examples for XSLT 2.0 but I'm using 1.0.
Thanks, Colin.
|
|
Use:
|
|||||
|
|
I like Kirill's answer better, but here's one that doesn't use XML Input
XSLT 1.0
XML Output
Also, I used the template for the year instead of |
|||||||||||
|
|
obviously its not possible with XSLT 1.0 alone .. for a similar Q I suggested scripting .. (C#) .. Sample XML:
Sample XSLT:
Resulting Output:
The script may reside in a same file (like I have it in my sample XSLT code) or if the code triggering XSLTransformation is C# then move the same code in the calling place :) |
|||||
|