當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。