是否有可能得到前一个月的最后一天XSLT? 我发现这个功能: http://www.xsltfunctions.com/xsl/functx_last-day-of-month.html ,但我不知道如何使用它来获得上月持平。
Answer 1:
使用方法 :
current-date()
- xs:dayTimeDuration(concat('P', day-from-date(current-date()), 'D'))
这将产生(2012年5月的任何一天进行评估时):
2012-04-30-07:00
文章来源: Last day of previous month in XSLT