gpt4 book ai didi

ruby - 简单的正则表达式匹配适用于 rubular 但不适用于 IRB

转载 作者:太空宇宙 更新时间:2023-11-03 17:35:06 25 4
gpt4 key购买 nike

给定字符串:

"hello %{one} there %{two} world"

此代码无效:

s = "hello %{one} there %{two} world"
r = Regexp.new(/(%{.*?})+/)
m = r.match(s)
m[0] # => "%{one}"
m[1] # => "%{one}"
m[2] # => nil # I expected "%{two}"

但是在 Rubular ,相同的正则表达式 (%{.*?}) 起作用并返回 %{one}%{two}

我做错了什么?

最佳答案

使用String#scan方法:

'hello %{one} there %{two} world'.scan(/(%{.*?})/)
# => [["%{one}"], ["%{two}"]]

对于非捕获组:

'hello %{one} there %{two} world'.scan(/(?:%{.*?})/)
# => ["%{one}", "%{two}"]

更新 实际上,不需要分组。

'hello %{one} there %{two} world'.scan(/%{.*?}/)
# => ["%{one}", "%{two}"]

关于ruby - 简单的正则表达式匹配适用于 rubular 但不适用于 IRB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19463269/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com