当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia Dates.dayofweekofmonth用法及代码示例


用法:

dayofweekofmonth(dt::TimeType) -> Int

对于 dt 的星期几,返回它在 dt 的月份中的数字。所以如果dt的星期几是星期一,那么1 = First Monday of the month, 2 = Second Monday of the month, etc.在1:5的范围内。

例子

julia> Dates.dayofweekofmonth(Date("2000-02-01"))
1

julia> Dates.dayofweekofmonth(Date("2000-02-08"))
2

julia> Dates.dayofweekofmonth(Date("2000-02-15"))
3

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Dates.dayofweekofmonth — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。