用法:
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
相關用法
- Julia Dates.dayofweek用法及代碼示例
- Julia Dates.daysinyear用法及代碼示例
- Julia Dates.daysofweekinmonth用法及代碼示例
- Julia Dates.dayabbr用法及代碼示例
- Julia Dates.daysinmonth用法及代碼示例
- Julia Dates.dayname用法及代碼示例
- Julia Dates.week用法及代碼示例
- Julia Dates.CompoundPeriod方法用法及代碼示例
- Julia Dates.monthname用法及代碼示例
- Julia Dates.Time方法用法及代碼示例
- Julia Dates.firstdayofmonth用法及代碼示例
- Julia Dates.lastdayofmonth用法及代碼示例
- Julia Dates.lastdayofweek用法及代碼示例
- Julia Dates.lastdayofyear用法及代碼示例
- Julia Dates.lastdayofquarter用法及代碼示例
- Julia Dates.monthabbr用法及代碼示例
- Julia Dates.isleapyear用法及代碼示例
- Julia Dates.firstdayofquarter用法及代碼示例
- Julia Dates.DateTime方法用法及代碼示例
- Julia Dates.firstdayofyear用法及代碼示例
- Julia Dates.Date方法用法及代碼示例
- Julia Dates.firstdayofweek用法及代碼示例
- Julia Distributed.procs方法用法及代碼示例
- Julia Dims()用法及代碼示例
- Julia Distributed.remotecall_fetch方法用法及代碼示例
注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 Dates.dayofweekofmonth — Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。