这是我正在尝试解码的字符串。
"Ren & Stimpy The Lost Episodes Disc.1 [MP4-AAC] 480p DVD"
我想最终得到一个字符串:
"Ren & Stimpy The Lost Episodes Disc.1 [MP4-AAC] 480p DVD"
我已尝试使用URI.decode功能,但它不起作用,我得到相同的&
符号。
iex(1)> URI.decode "Ren & Stimpy The Lost Episodes Disc.1 [MP4-AAC] 480p DVD"
"Ren & Stimpy The Lost Episodes Disc.1 [MP4-AAC] 480p DVD"
答案 0 :(得分:6)
从Hex.pm
添加html_entities包tbody.item > tr > td:first-child
然后传递你的字符串:
defp deps do
[{:html_entities, "~> 0.3"}]
end