在红宝石中寻找匹配字符串的模式

时间:2012-05-12 03:07:20

标签: ruby regex

name="(this is 
a message
)

(other message)";

res=name.scan(/(\(.*\))/m);
puts res.join("###");

在上面的代码中,我想提取匹配的括号,并将其中的文本作为整体表达。

我的意思是我希望通过我的代码获得以下结果:

(this is 
a message
)###(other message)

也就是说,res的长度应该是2而不是1, 但在我的代码中,我总是得到:

(this is 
a message
)
(other message)

我的模式一定有问题,任何人都可以帮我解决吗?

1 个答案:

答案 0 :(得分:2)

您想使用non-greedy匹配,因此请将正则表达式行更改为:

res=name.scan(/(\(.*?\))/m);