timezone-from-time
The timezone portion of a time
Description
The fn:timezone-from-time function returns the time zone of an xs:time value, offset from UTC, as an xs:dayTimeDuration value between -PT14H and PT14H. If the time zone is UTC, the value PT0S is returned.
Parameters |
Description |
---|---|
arg:time() |
Examples
XPath |
Results |
---|---|
timezone-from-time(xs:time(‘09:54:00-05:00’)) |
-PT5H |
timezone-from-time(xs:time(‘09:54:00+05:00’)) |
PT5H |
timezone-from-time(xs:time(‘09:54:00Z’)) |
PT0S |
timezone-from-time(xs:time(‘09:54:00’)) |
() |