Loading TOC...

xdmp.daynameFromDate

xdmp.daynameFromDate(
   arg as Date?
) as String?

Summary

Returns a string representing the dayname value in the localized value of $arg.

If $arg is an empty sequence or null, returns null.

Parameters
arg The date whose dayname value will be returned.

Example

xdmp.daynameFromDate(xs.date("1997-07-20"));
=>
Sunday

Example

xdmp.daynameFromDate(xs.date("2012-05-16"));
=>
Wednesday

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