在Golang
Implementation
To achieve this conversion, follow these steps:Surround the escaped Unicode sequence with double quotes using the backtick (`) to indicate a raw string literal.這會阻止編譯器解釋和取消序列。
使用strconv.unquote()來取消序列。 //否則編譯器將取消引用(解釋字符串文字)! S:=`\ u003chtml \ u003e` fmt.println(S) s2,err:= strconv.unquote(```s`````) 如果err! = nil { 恐慌(err) } fmt.println(s2)\ u003chtml \ u003e
Raw string文字(使用反向)對於保留Unicode逃生序列的文字形式至關重要,以允許進行適當的刪除。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3