为什么我不能用 '\\+' 代替在带有 gsub 的字符串内?

发布于 2024-08-28 16:22:58 字数 248 浏览 8 评论 0 原文

尝试以下代码:

s = '#value#'
puts s.gsub('#value#', Regexp.escape('*'))         # => '\*'
puts s.gsub('#value#', Regexp.escape('+'))         # => ''

卧槽?看起来字符“\+”(由 Regexp.escape 返回)完全被 gsub 忽略。如何解决这个问题?

Try the following code:

s = '#value#'
puts s.gsub('#value#', Regexp.escape('*'))         # => '\*'
puts s.gsub('#value#', Regexp.escape('+'))         # => ''

Wtf? It looks like the char '\+' (returned by Regexp.escape) is completely ignored by gsub. How to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹿! 2024-09-04 16:22:58

这是因为特殊变量的插值。 \+ 将替换为“实际参与比赛的编号最高的捕获组匹配的文本”(请参阅​​ http://www.regular-expressions.info/ruby.html)

块语法实际上是对此的修复,做得很好。

It's because of the interpolation of special variables. \+ will be replaced with "the text matched by the highest-numbered capturing group that actually participated in the match" (See the Special Variables section on http://www.regular-expressions.info/ruby.html)

The block syntax is in fact a fix for this, well done.

节枝 2024-09-04 16:22:58

#ruby 的 xsdg 解决了这个问题

看起来 gsub 的替换已被解析,因此 + 在该过程中的某个地方丢失了。解决方法是使用 gsub 的块语法。这边走:

s = '#value#'
puts s.gsub('#value#') { |v| Regexp.escape('+') }          # => '+'

按预期工作:)

谢谢,xsdg!

xsdg of #ruby worked this out

Looks like that gsub's replacement is parsed, so the + is lost somewhere in the process. A workaround is using gsub's block syntax. This way:

s = '#value#'
puts s.gsub('#value#') { |v| Regexp.escape('+') }          # => '+'

Works as expected :)

Thanks, xsdg!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文