函数功能 | 函数 | 页面显示 | 返回类型 |
取当前日期的毫秒 | =Date.today().millisecond | 145 | 整型 |
对当前年日期设置年 | =Date.today().setYear(2020) | 2020-7-9 | 日期函数 |
对当前年日期设置月份 | =Date.today().setMonth(3) | 2021-3-9 | 日期函数 |
对当前年日期设置日期 | =Date.today().setDay(1) | 2021-7-1 | 日期函数 |
对当前年日期设置小时 | =Date.today().setHour(1) | 2021-7-9 1:30:00 | 日期函数 |
对当前年日期设置分钟 | =Date.today().setMinute(10) | 2021-7-9 12:10:00 | 日期函数 |
对当前年日期设置秒 | =Date.today().setSecond(12) | 2021-7-9 12:30:12 | 日期函数 |
对当前年日期设置毫秒 | =Date.today().setMillisecond(0) | 2021-7-9 12:30:00:000 | 日期函数 |
算出相差n秒之后的日期 | =Date.today().addSecond(4) | 2021-2-9 12.30.04 | 时间日期 |
当前年第几天 | =Date.today().dayOfYear() | 190 | 整数 |
计算两个日期相差的月份 |
=Date.parseDate(Date.create(2008,08,08)).daysSubtract(Date.create(2006,01,01)) |
950 | 整数 |
计算两个函数相差几天 | =Date.parseDate(Date.create(2008,08,08)).monthsSubtract(Date.create(2006,01,01)) | 30 | 整数 |
计算两个日期相差几秒 | =Date.parseDate(Date.create(2008,08,08)).secondSubtract(Date.create(2010,01,01)) | 44150400 | 整数 |
将日期转化为中文字符串 | =Date.today().toSimpleChinese() | 二〇二一年七月九日 | String |
计算两个日期的差值 | =Date.parseDate(Date.create(2008,08,08)).dateDifferenceList(Date.create(2000,01,01)) | [8,7,8] | 字符串 |
计算两个日期的差值 | =Date.parseDate(Date.create(2008,08,08)).dateDifference2(Date.create(2000,01,01)) | 8年7月8日 | String |