I have a string that represents a date and is formatted like so
2010-12-03 = "yyyy-mm-dd"
I would like to use XSLT and find a way to extract the month and get its month abbreviation.
After the transform it should read "DEC" since December is the 12th month.
Thanks!


<months><month n="1" abbrev="JAN" /><month n="2" abbrev="FEB"/>...and then look up the abbrev using$months/month[@n = number(substring-before(substring-after($datestr, '-'), '-'))]. – LarsH Feb 12 at 0:37