0

我有一个带有 API 的旧服务器,我需要将数据从它加载到新服务器。问题是旧的服务器 API 输出像 ® 这样的 html 实体,我不想将它们放入新数据库中,而是想用 ® 替换它们但我不知道如何在 Rails 中做到这一点。我试图用 HTMLEntities 类来做,但它不能用 ® 代替它,请帮忙。

4

1 回答 1

1

®您可以使用gsub替换 ® 实体,例如

# encoding: utf-8 # this line might not be nescessary in Rails
string = 'test ® test'
string.gsub!('®', '®')
# => string is now "test ® test"
于 2012-12-11T09:34:23.990 回答