How to check if a string is a valid date

后端 未结 15 1486
礼貌的吻别
礼貌的吻别 2020-12-02 08:09

I have a string: \"31-02-2010\" and want to check whether or not it is a valid date. What is the best way to do it?

I need a method which which returns

15条回答
  •  情歌与酒
    2020-12-02 08:48

    Another way to validate date:

    date_hash = Date._parse(date.to_s)
    Date.valid_date?(date_hash[:year].to_i,
                     date_hash[:mon].to_i,
                     date_hash[:mday].to_i)
    

提交回复
热议问题