标签: ruby encoding character-encoding escaping
我有这种字符串:
I\x26#39;m happy
我在期待(显然,我猜!:)):
I'm happy
我如何知道\x26#39;是什么,以及如何解码?
\x26#39;
答案 0 :(得分:1)
require "cgi" CGI.unescapeHTML("\x26#39;") # => "'" CGI.unescapeHTML("I\x26#39;m happy") # => "I'm happy"