Hi,
I am trying to do the follg. using XSLT 1.0
My input document contains time in hhmmss(military time) format. I want my xslt to transform this into XML time, w/t respect UTC, as given below in the example: (I am guessing that xs:time should be able to identify the current timezone, for e.g. -5 or -4 for EST).
Does anyone know how to do this? (although, I can do this using string function, to concatenate a fixed offset, it will change by an hour during daylight savings time and this will cause error)
Input:
<?xml version="1.0" encoding="UTF-8"?> 132000Output:
<?xml version="1.0" encoding="UTF-8"?> 13:20:00-05:00Thanks,
Ken