为什么不使用“gsub”删除管道在鲁比?

发布于 2024-12-29 19:43:25 字数 468 浏览 2 评论 0原文

我想从 notes 中删除从 example_header 开始的所有内容。我尝试这样做:

example_header = <<-EXAMPLE
    -----------------
    ---| Example |---
    -----------------
EXAMPLE

notes = <<-HTML
    Hello World
    #{example_header}
    Example Here
HTML

puts notes.gsub(Regexp.new(example_header + ".*", Regexp::MULTILINE), "")

但输出是:

    Hello World
    ||

为什么 || 没有被删除?

I would like to delete from notes everything starting from the example_header. I tried to do:

example_header = <<-EXAMPLE
    -----------------
    ---| Example |---
    -----------------
EXAMPLE

notes = <<-HTML
    Hello World
    #{example_header}
    Example Here
HTML

puts notes.gsub(Regexp.new(example_header + ".*", Regexp::MULTILINE), "")

but the output is:

    Hello World
    ||

Why || isn't deleted?

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

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

发布评论

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

评论(2

二智少女 2025-01-05 19:43:25

正则表达式中的管道被解释为交替运算符。您的正则表达式将替换以下三个字符串:

"-----------------\n---"
" Example "
"---\n-----------------"

您可以使用 Regexp.escape 在正则表达式中使用字符串时对其进行转义 (ideone):

puts notes.gsub(Regexp.new(Regexp.escape(example_header) + ".*",
                           Regexp::MULTILINE),
                "")

您还可以考虑避免使用正则表达式,而只使用普通字符串方法 ( ideone):

puts notes[0, notes.index(example_header)]

The pipes in your regular expression are being interpreted as the alternation operator. Your regular expression will replace the following three strings:

"-----------------\n---"
" Example "
"---\n-----------------"

You can solve your problem by using Regexp.escape to escape the string when you use it in a regular expression (ideone):

puts notes.gsub(Regexp.new(Regexp.escape(example_header) + ".*",
                           Regexp::MULTILINE),
                "")

You could also consider avoiding regular expressions and just using the ordinary string methods instead (ideone):

puts notes[0, notes.index(example_header)]
隔纱相望 2025-01-05 19:43:25

管道是正则表达式语法的一部分(它们的意思是“或”)。您需要使用反斜杠对它们进行转义,以便将它们算作要匹配的实际字符。

Pipes are part of regexp syntax (they mean "or"). You need to escape them with a backslash in order to have them count as actual characters to be matched.

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