Ruby gsub 函数

发布于 2024-08-16 09:49:15 字数 464 浏览 7 评论 0原文

我正在尝试为我的 Rails 论坛创建 BBcode [code] 标签,但我对表达式有疑问:

param_string.gsub!( /\[code\](.*?)\[\/code\]/im, '<pre>\1</pre>' )

How do I get what the regex match returns (the text in Between the [code][/code] tag),并转义所有 html 和其中的一些其他字符?

我已经尝试过这个:

param_string.gsub!( /\[code\](.*?)\[\/code\]/im, '<pre>' + my_escape_function('\1') + '</pre>' )

但没有成功。它只是将“\1”作为字符串传递给函数。

I'm trying to create a BBcode [code] tag for my rails forum, and I have a problem with the expression:

param_string.gsub!( /\[code\](.*?)\[\/code\]/im, '<pre>\1</pre>' )

How do I get what the regex match returns (the text inbetween the [code][/code] tags), and escape all the html and some other characters in it?

I've tried this:

param_string.gsub!( /\[code\](.*?)\[\/code\]/im, '<pre>' + my_escape_function('\1') + '</pre>' )

but it didn't work. It just passes "\1" as a string to the function.

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

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

发布评论

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

评论(3

兲鉂ぱ嘚淚 2024-08-23 09:49:15

您应该注意正则表达式的贪婪行为。所以正确的代码如下所示:

html.gsub!(/\[(\S*?)\](.*?)\[\/\1\]/) { |m| escape_method($1, $2) }

escape_method 则如下所示:

def escape_method( type, string )
  case type.downcase
    when 'code'
      "<pre>#{string}</pre>"
    when 'bold'
      "<b>#{string}</b>"
    else
       string
  end
end

You should take care of the greedy behavior of the regular expressions. So the correct code looks like this:

html.gsub!(/\[(\S*?)\](.*?)\[\/\1\]/) { |m| escape_method($1, $2) }

The escape_method then looks like this:

def escape_method( type, string )
  case type.downcase
    when 'code'
      "<pre>#{string}</pre>"
    when 'bold'
      "<b>#{string}</b>"
    else
       string
  end
end
静谧幽蓝 2024-08-23 09:49:15

这里有人发布了答案,但他们已经删除了。

我已经尝试过他们的建议,并通过一些小改动使其发挥作用。不管你是谁,谢谢! :)

这里是

param_string.gsub!( /\[code\](.*?)\[\/code\]/im ) {|s| '<pre>' + my_escape_function(s) + '</pre>' }

Someone here posted an answer, but they've deleted it.

I've tried their suggestion, and made it work with a small change. Whoever you are, thanks! :)

Here it is

param_string.gsub!( /\[code\](.*?)\[\/code\]/im ) {|s| '<pre>' + my_escape_function(s) + '</pre>' }
小瓶盖 2024-08-23 09:49:15

您只需使用 "

#{$1}

" 作为替换值即可。

You can simply use "<pre>#{$1}</pre>" for your replacement value.

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