HTML 태그에서 이스케이프 문자 변환
Go에서 이스케이프 문자가 포함된 HTML 태그의 변환은 원하는 만큼 간단하지 않습니다. json.Marshal()은 "<"와 같은 문자가 포함된 문자열을 쉽게 변환할 수 있습니다. 이스케이프 시퀀스 "u003chtmlu003e"에 대해 json.Unmarshal()은 역 작업을 위한 직접적이고 효율적인 방법을 제공하지 않습니다.
strconv.Unquote() 사용
strconv.Unquote() 함수를 사용하여 변환을 수행할 수 있습니다. 그러나 문자열을 따옴표로 묶어야 합니다. 따라서 이러한 둘러싸는 문자를 수동으로 추가해야 합니다.
import ( "fmt" "strconv" ) func main() { // Important to use backtick ` (raw string literal) // else the compiler will unquote it (interpreted string literal)! s := `\u003chtml\u003e` fmt.Println(s) s2, err := strconv.Unquote(`"` + s + `"`) if err != nil { panic(err) } fmt.Println(s2) }
출력:
\u003chtml\u003e <html></p> <p><strong>참고:</strong></p> <p>html 패키지도 사용할 수 있습니다. HTML 텍스트 이스케이프 및 이스케이프 해제. 그러나 uxxxx 형식의 유니코드 시퀀스는 디코딩하지 않고 decimal; 또는 HH;.</p> <pre class="brush:php;toolbar:false">import ( "fmt" "html" ) func main() { fmt.Println(html.UnescapeString(`\u003chtml\u003e`)) // wrong fmt.Println(html.UnescapeString(`&#60;html&#62;`)) // good fmt.Println(html.UnescapeString(`&#x3c;html&#x3e;`)) // good }
출력:
\u003chtml\u003e <html> <html>
참고 2:
큰따옴표( ")는 컴파일러에 의해 인용되지 않은 해석된 문자열입니다. 따옴표를 그대로 사용하여 문자열을 지정하려면 역따옴표를 사용하여 원시 문자열 리터럴을 생성합니다.
s := "\u003chtml\u003e" // Interpreted string literal (unquoted by the compiler!) fmt.Println(s) s2 := `\u003chtml\u003e` // Raw string literal (no unquoting will take place) fmt.Println(s2) s3 := "\u003chtml\u003e" // Double quoted interpreted string literal // (unquoted by the compiler to be "single" quoted) fmt.Println(s3)
출력:
<html> \u003chtml\u003e
위 내용은 Go에서 HTML 이스케이프 시퀀스를 효율적으로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!