Loading TOC...

fn:year-from-date

fn:year-from-date(
   $arg as xs:date?
) as xs:integer?

Summary

Returns an xs:integer representing the year component in the localized value of $arg. The result may be negative.

If $arg is the empty sequence, returns the empty sequence.

Parameters
arg The date whose year component will be returned.

Example

fn:year-from-date(xs:date("1999-05-31"))
=> 1999

Example

fn:year-from-date(xs:date("2000-01-01+05:00"))
=> 2000

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.