Ruby中解码html字符串_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > Ruby中解码html字符串

Ruby中解码html字符串

 2011/8/10 17:30:11  jsntghf  http://2015.iteye.com  我要评论(0)
  • 摘要:数据中有类似<span>hello</span>这种被编码过的html片段,用htmlentities这个gem可以解码。安装:geminstallhtmlentities解码示例:require'htmlentities'coder=HTMLEntities.newstring="&lt;span&gt;hello&lt;/span&gt;"coder.decode(string)#=><span>hello<
  • 标签:Ruby 字符串

数据中有类似<span>hello</span>这种被编码过的html片段,用htmlentities这个gem可以解码。

?

安装:

?

gem install htmlentities

?

解码示例:

?

require 'htmlentities'
coder = HTMLEntities.new
string = "&lt;span&gt;hello&lt;/span&gt;"
coder.decode(string) # => <span>hello</span>

?

发表评论
用户名: 匿名