ruby 子方法块的正则表达式中的大括号
我有一个字符串:
s = "<aaa>bbb</ccc>"
我想在子方法的 ruby 块中获取 aaa 和 bbb 。 如果我调用:
s.sub(/<([a-z]+)>([\s\S]+)<\/[a-z]+>/,"first=\\1 second=\\2")
一切都按我的预期运行,因此输出为“first=aaa secondary=bbb”。 然后我使用 ruby-block 调用相同的正则表达式,但它仅返回整个字符串,而不返回 \\1 和 \\2 部分:
s.sub(/<([a-z]+)>([\s\S]+)<\/[a-z]+>/) { |x,y| puts x; puts y; }
这种情况输出是
<aaa>bbb</ccc>, nil.
How can I get statements in braces like \\1, \\2 in ruby - 子方法的块?
I have a string:
s = "<aaa>bbb</ccc>"
I want to get aaa and bbb in ruby block for sub method.
If I call:
s.sub(/<([a-z]+)>([\s\S]+)<\/[a-z]+>/,"first=\\1 second=\\2")
everything works as I expect, so the output is "first=aaa second=bbb".
Then I call the same regexp with ruby-block, but it returns only the whole string but not \\1 and \\2 parts:
s.sub(/<([a-z]+)>([\s\S]+)<\/[a-z]+>/) { |x,y| puts x; puts y; }
This case output is
<aaa>bbb</ccc>, nil.
How can I get sentences in braces like \\1, \\2 in ruby-block for sub method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sub
生成的字符串始终是完全匹配的。要获取捕获,您可以在块内使用$1
和$2
。The string yielded by
sub
will always be the full match. To get at the captures, you can use$1
and$2
inside the block.