.. _functx_last-day-of-month: ======================== functx:last-day-of-month ======================== The last day of the month of a date Description ~~~~~~~~~~~ The functx:last-day-of-month function returns the date representing the last day of the month of $date as an xs:date value. The $date argument must be castable to xs:date, meaning that it must have the type xs:date or xs:dateTime, or be an xs:string or untyped value of the form YYYY-MM-DD. .. list-table:: :widths: 40 60 :header-rows: 1 * - **Parameters** - **Description** * - date:date() - the date Examples ~~~~~~~~ .. list-table:: :widths: 50 50 :header-rows: 1 * - **XPath** - **Results** * - functx:last-day-of-month(xs:date('2004-01-23')) - 2004-01-31 * - functx:last-day-of-month(xs:dateTime('2004-09-23T12:00:13')) - 2004-09-30 * - functx:last-day-of-month('2004-03-23') - 2004-03-31 Depends On ~~~~~~~~~~ * :ref:`functx_date`. * :ref:`functx_days-in-month`. See Also ~~~~~~~~ .. toctree:: :titlesonly: :glob: * :ref:`functx_days-in-month`. * :ref:`functx_first-day-of-month`. * :ref:`functx_last-day-of-year`.