Ruby 正则表达式匹配帮助
这只是一个一般性的“我的正则表达式出了什么问题,它没有提取出我期望的所有内容”问题。
这是我的字符串:
"Mon 0900-1600 1700-2000"
我希望能够提取时间 "0900-1600"
和 "1700-2000"
。
这是我的正则表达式 /([0-9]{4}-[0-9]{4})/
,虽然它在查找时间的第一次出现方面效果很好,但它并没有返回第二个匹配项。有人能告诉我为什么吗?
这是我记录的实际代码片段:
str = "Mon 0900-1600 1700-2000"
/([0-9]{4}-[0-9]{4})/.match(str) #<MatchData "0900-1600">
This is just a general 'What is wrong with my regex that its not pulling out everything I expected' question.
Here's my string:
"Mon 0900-1600 1700-2000"
and I'd like to be able to pull out the times "0900-1600"
and "1700-2000"
.
This is my regexp /([0-9]{4}-[0-9]{4})/
and while it works great at finding the first occurrence of the time, it doesn't return a match to the second. Could someone tell me why?
Here's my actual code snippet for the record:
str = "Mon 0900-1600 1700-2000"
/([0-9]{4}-[0-9]{4})/.match(str) #<MatchData "0900-1600">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用
string#scan
代替:Try using
string#scan
instead:为什么不使用 String#split 呢?
否则简化并使用:
Why not use String#split?
Otherwise simplify and use: