1

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 Answer 1

2

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

Sign up to request clarification or add additional context in comments.

2 Comments

I still have the \ plague : <iframe src="https:\/\/www.disnei.com\/embed\/44bc40f3bc04f65b7a35"
@CeriseLimón I will make a simple string replace but i would like to know if there was something to do it "more simply" thanks btw

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.