Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 ruby 新手,我需要帮助将格式为“dd.mm.yyyy”的字符串转换为日期时间。提前致谢!
Date.strptime('03.02.2001', '%d.%m.%Y')
更新:这将返回一个 Date 对象
正如大卫在下面正确地指出的那样:
DateTime.strptime('03.02.2001', '%d.%m.%Y')
会给你一个红宝石 DateTime 对象。