minutes-from-dateTime function

The fn:minutes-from-dateTime function returns the minutes component of an xs:dateTime value.

Syntax

Read syntax diagramSkip visual syntax diagramfn:minutes-from-dateTime( dateTime-value)
dateTime-value
The dateTime value from which the minutes component is to be extracted.

dateTime-value is of type xs:dateTime, or is an empty sequence.

Returned value

If dateTime-value is of type xs:dateTime, the returned value is of type xs:integer, and the value is between 0 and 59, inclusive. The value is the minutes component of dateTime-value.

If dateTime-value is an empty sequence, the returned value is an empty sequence.

Example

The following function returns the minutes component from the dateTime value for January 23, 2005 at 9:42 am in the UTC-8 time zone.

fn:minutes-from-dateTime(xs:dateTime("2005-01-23T09:42:00-08:00"))

The returned value is 42.