为了账号安全,请及时绑定邮箱和手机立即绑定

如何取消转义html字符串中的引号

如何取消转义html字符串中的引号

Go
繁花如伊 2023-05-15 14:44:31
我在 Go 中有一个字符串如下:Hello world ! <a href=\"www.google.com\">Google</a>引号被转义了,我想得到没有反斜杠的字符串。我尝试使用html.UnescapeString但不是我想要的。关于我的问题有什么解决办法吗。
查看完整描述

3 回答

?
HUX布斯

TA贡献1876条经验 获得超6个赞

使用 strings.NewReplacer()

func NewReplacer(oldnew ...string) *替换器


package main


    import (

        "bytes"

        "fmt"

        "log"

        "strings"


        "golang.org/x/net/html"

    )


    func main() {

        const htm = `

            Hello world ! <a href=\"www.google.com\">Google</a>

        `

        // Code to get the attribute value

        var out string

        r := bytes.NewReader([]byte(htm))

        doc, err := html.Parse(r)

        if err != nil {

            log.Fatal(err)

        }

        var f func(*html.Node)

        f = func(n *html.Node) {

            if n.Type == html.ElementNode && n.Data == "a" {

                for _, a := range n.Attr {

                    out = a.Val

                }

            }

            for c := n.FirstChild; c != nil; c = c.NextSibling {

                f(c)

            }

        }

        f(doc)

        // Code to format the output string.

        rem := `\"`

        rep := strings.NewReplacer(rem, " ")

        fmt.Println(rep.Replace(out))

    }

输出 :


www.google.com


查看完整回答
反对 回复 2023-05-15
?
慕尼黑5688855

TA贡献1848条经验 获得超2个赞

假设您正在使用html/template,您要么希望将整个内容存储为template.HTML,要么将 url 存储为template.URL。您可以在此处查看操作方法:https ://play.golang.org/p/G2supatMfhK

tplVars := map[string]interface{}{

    "html": template.HTML(`Hello world ! <a href="www.google.com">Google</a>"`),

    "url": template.URL("www.google.com"),

    "string": `Hello world ! <a href="www.google.com">Google</a>"`,


}

t, _ := template.New("foo").Parse(`

{{define "T"}}

    Html: {{.html}}

    Url: <a href="{{.url}}"/>

    String: {{.string}}

{{end}}

`)

t.ExecuteTemplate(os.Stdout, "T", tplVars)


//Html: Hello world ! <a href="www.google.com">Google</a>"

//Url: <a href="www.google.com"/>

//String: Hello world ! &lt;a href=&#34;www.google.com&#34;&gt;Google&lt;/a&gt;&#34;



查看完整回答
反对 回复 2023-05-15
?
HUWWW

TA贡献1874条经验 获得超12个赞

我想得到没有反斜杠的字符串。


这是一个简单的问题,但是对于这样一个简单的问题,现有的两个答案都太复杂了。


package main


import (

    "fmt"

    "strings"

)


func main() {

    s := `Hello world ! <a href=\"www.google.com\">Google</a>`

    fmt.Println(s)

    fmt.Println(strings.Replace(s, `\"`, `"`, -1))

}

在https://play.golang.org/p/7XX7jJ3FVFt试试



查看完整回答
反对 回复 2023-05-15
  • 3 回答
  • 0 关注
  • 185 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信