本文简要介绍ruby语言中 Date.parse
的用法。
用法
parse(string='-4712-01-01'[, comp=true[, start=Date::ITALY]], limit: 128) → date
解析给定的日期和时间表示,并创建一个日期对象。
此方法*不*用作验证器。如果输入字符串与有效格式不严格匹配,您可能会得到一个神秘的结果。应该考虑尽可能使用“Date.strptime”而不是这种方法。
如果可选的第二个参数为真并且检测到的年份在“00” 到“99” 的范围内,则将年份视为两位数形式并使其完整。
Date.parse('2001-02-03') #=> #<Date: 2001-02-03 ...>
Date.parse('20010203') #=> #<Date: 2001-02-03 ...>
Date.parse('3rd Feb 2001') #=> #<Date: 2001-02-03 ...>
当字符串长度超过 limit
时,引发 ArgumentError
。您可以通过传递 ‘limit: nil’ 来停止此检查,但请注意,解析可能需要很长时间。
相关用法
- Ruby Date.prev_year用法及代码示例
- 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.civil用法及代码示例
- Ruby Date.cwyear用法及代码示例
- Ruby Date.yday用法及代码示例
- Ruby Date.d + other用法及代码示例
- Ruby Date.julian?用法及代码示例
- Ruby Date._parse用法及代码示例
- Ruby Date.jisx0301用法及代码示例
- Ruby Date.new_start用法及代码示例
- Ruby Date.amjd用法及代码示例
- Ruby Date.step用法及代码示例
- Ruby Date.mon用法及代码示例
- Ruby Date.d << n用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Date.parse。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。