mona
mona

Reputation: 6289

Date conversion from Central time to UTC in XSL

I am writing an XSL file and need to convert the Central time to UTC time using XSL templates. Any suggestions. TimeStamp: 20120113T100643-0600

Upvotes: 2

Views: 4250

Answers (1)

LarsH
LarsH

Reputation: 27994

If you're using XSLT 1.0, I would suggest using the EXSLT extensions for processing dates and times. The best way to do this, and the limitations thereof, depend on what XSLT processor you're using.

If you're using XSLT/XPath 2.0, you can use the built-in function adjust-date-to-timezone().

Upvotes: 5

Related Questions