替换成字符串的问题

时间:2011-07-08 19:58:00

标签: ruby gsub

我正在尝试执行这样的代码:

template = "
... here html tags
[sitename]
... here html tags
"

template = template.gsub(/\[sitename\]/,"http://google.com")

但它不起作用。我的错是什么?

1 个答案:

答案 0 :(得分:2)

你能描述一下它是如何工作的吗?

在ruby 1.9.2中,我得到了我的预期,命令

puts template

给出

... here html tags
http://google.com
... here html tags