doupao1978 2017-02-22 17:08
浏览 310
已采纳

在golang中将html字符串呈现为普通字符串

here is my string :

test1 = `<iframe src="https:\/\/www.disnei.com\/embed\/44bc40f3bc04f65b7a35" frameborder="0" width="560" height="340" scrolling="no" allowfullscreen><\/iframe>`

and i would like to have the 'normal' string as :

<iframe src="https://www.disnei.com/embed/44bc40f3bc04f65b7a35"

etc ...

is there a simple way to do it in golang ?

Edit : Here are some of my tests : https://play.golang.org/p/OuzNrTXYRB I still have a blackslash plague

thanks and regards

  • 写回答

1条回答 默认 最新

  • duanbo7517 2017-02-22 17:15
    关注

    you can use UnescapeString from the go html lib: https://godoc.org/html#UnescapeString

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?