本文簡要介紹ruby語言中 Date._parse
的用法。
用法
_parse(string[, comp=true], limit: 128) → hash
解析給定的日期和時間表示,並返回已解析元素的哈希值。
此方法*不*用作驗證器。如果輸入字符串與有效格式不嚴格匹配,您可能會得到一個神秘的結果。應考慮盡可能使用“Date._strptime”或“DateTime._strptime”來代替這種方法。
如果可選的第二個參數為真並且檢測到的年份在“00” 到“99” 的範圍內,則將年份視為兩位數形式並使其完整。
Date._parse('2001-02-03') #=> {:year=>2001, :mon=>2, :mday=>3}
當字符串長度超過 limit
時,引發 ArgumentError
。您可以通過傳遞 ‘limit: nil’ 來停止此檢查,但請注意,解析可能需要很長時間。
相關用法
- Ruby Date._strptime用法及代碼示例
- Ruby Date.valid_civil?用法及代碼示例
- Ruby Date.gregorian?用法及代碼示例
- Ruby Date.strftime用法及代碼示例
- Ruby Date.valid_ordinal?用法及代碼示例
- Ruby Date.leap?用法及代碼示例
- Ruby Date.today用法及代碼示例
- Ruby Date.mday用法及代碼示例
- Ruby Date.next_year用法及代碼示例
- Ruby Date.day用法及代碼示例
- Ruby Date.d ===用法及代碼示例
- Ruby Date.strptime用法及代碼示例
- Ruby Date.to_s用法及代碼示例
- Ruby Date.parse用法及代碼示例
- Ruby Date.civil用法及代碼示例
- Ruby Date.cwyear用法及代碼示例
- Ruby Date.yday用法及代碼示例
- Ruby Date.d + other用法及代碼示例
- Ruby Date.julian?用法及代碼示例
- Ruby Date.prev_year用法及代碼示例
- Ruby Date.jisx0301用法及代碼示例
- Ruby Date.new_start用法及代碼示例
- Ruby Date.amjd用法及代碼示例
- Ruby Date.step用法及代碼示例
- Ruby Date.mon用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Date._parse。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。