html_test.go 236 B

12345678910111213141516
  1. package test
  2. import (
  3. "fmt"
  4. "html"
  5. "testing"
  6. )
  7. //html
  8. func Test_html(t *testing.T) {
  9. str1 := "<script>中国人</script>"
  10. str2 := html.EscapeString(str1)
  11. fmt.Println(str2)
  12. str3 := html.UnescapeString(str2)
  13. fmt.Println(str3)
  14. }