ruby on Rails 递归子字符串
我有像这样的字符串(实际上是日期和时间)“20120207080000”
。
是否有任何选项可以使用任何模式匹配技术或其他技术来分割给定的字符串?
即我需要这样的输出
output = ["2012", "02", "07", "08", "00", "00"]
否则是否可以将给定的字符串转换为日期/时间对象?
红宝石版本:1.8.7
I have the string (actually it's a date and time) like this "20120207080000"
.
Is there any option to split the given string using any pattern matching technique or anything else?
i.e I need the output like this
output = ["2012", "02", "07", "08", "00", "00"]
Otherwise is it possible to convert the given string into date/time object?.
ruby version: 1.8.7
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
获取如下所示的 DateTime 对象:
请注意您使用的元素顺序正确。我只是猜测。
Get a DateTime object like this:
Please take care that you are using the right order of elements. I was just guessing.
@steenslag 答案确实是一个很好的答案,尽管您也可以仅使用字符串操作。
结果 :
@steenslag answer is really a good answer although you can also do just using string manipulation .
result :