为什么我不能用 '\\+' 代替在带有 gsub 的字符串内?
尝试以下代码:
s = '#value#'
puts s.gsub('#value#', Regexp.escape('*')) # => '\*'
puts s.gsub('#value#', Regexp.escape('+')) # => ''
卧槽?看起来字符“\+”(由 Regexp.escape 返回)完全被 gsub 忽略。如何解决这个问题?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为特殊变量的插值。
\+
将替换为“实际参与比赛的编号最高的捕获组匹配的文本”(请参阅 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.
#ruby 的 xsdg 解决了这个问题
看起来 gsub 的替换已被解析,因此 + 在该过程中的某个地方丢失了。解决方法是使用 gsub 的块语法。这边走:
按预期工作:)
谢谢,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:
Works as expected :)
Thanks, xsdg!