fn:hours-from-duration( $arg as xs:duration? ) as xs:integer?
Returns an xs:integer representing the hours component in the canonical lexical representation of the value of $arg. The result may be negative.
If $arg is the empty sequence, returns the empty sequence.
Parameters | |
---|---|
arg | The duration whose hour component will be returned. |
fn:hours-from-duration(xs:duration("P3DT10H")) => 10
fn:hours-from-duration(xs:duration("P3DT12H32M12S")) => 12
fn:hours-from-duration(xs:duration("PT123H")) => 3
fn:hours-from-duration(xs:duration("-P3DT10H")) => -10
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.