fn:minutes-from-time

Return minutes integer value from time argument.

Top of page

Related Syntax Constructs

The following construct(s) refer to this construct:


Syntax

fn:minutes-from-time(xs:time? $arg) => xs:integer?

Description

This function returns an integer value between 0 and 59, representing the minutes component of the localized value of the argument value. The localized value is the value in its original timezone or without timezone. If the argument is an empty sequence, the empty sequence is returned.

Argument

$arg

argument value of type xs:time

Examples

  • This function call returns the minutes component of the current time:

    minutes-from-time(current-time())
  • This function call returns the minutes component of the specified time value which is 23:

    minutes-from-time(xs:time("01:23:00+05:00"))