
fn:month-from-dateTime( $arg as xs:dateTime? ) as xs:integer?
Returns an xs:integer between 1 and 12, both inclusive, representing the month component in the localized value of $arg.
If $arg is the empty sequence, returns the empty sequence.
| Parameters | |
|---|---|
| arg | The dateTime whose month component will be returned. |
fn:month-from-dateTime(xs:dateTime("1999-05-31T13:20:00-05:00"))
=> 5
fn:month-from-dateTime(xs:dateTime("1999-12-31T19:20:00-07:00"))
=> 12
fn:month-from-dateTime(
fn:adjust-dateTime-to-timezone(
xs:dateTime("1999-12-31T19:20:00-05:00"),
xs:dayTimeDuration("PT0H")))
=> 1