如何在Elixir中解码字符串?

时间:2016-08-10 07:25:46

标签: html string elixir decode

这是我正在尝试解码的字符串。

"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"

1 个答案:

答案 0 :(得分:6)

从Hex.pm

添加html_entities
tbody.item > tr > td:first-child

然后传递你的字符串:

defp deps do
  [{:html_entities, "~> 0.3"}]
end