mirror of
https://gitee.com/johng/gf
synced 2026-07-07 22:27:06 +08:00
26 lines
536 B
Go
26 lines
536 B
Go
|
|
package ghtml
|
||
|
|
|
||
|
|
import "strings"
|
||
|
|
|
||
|
|
// 将html中的特殊标签转换为html转义标签
|
||
|
|
func SpecialChars(s string) string {
|
||
|
|
return strings.NewReplacer(
|
||
|
|
"&", "&",
|
||
|
|
"<", "<",
|
||
|
|
">", ">",
|
||
|
|
`"`, """,
|
||
|
|
"'", "'",
|
||
|
|
).Replace(s)
|
||
|
|
}
|
||
|
|
|
||
|
|
// 将html转义标签还原为html特殊标签
|
||
|
|
func SpecialCharsDecode(s string) string {
|
||
|
|
return strings.NewReplacer(
|
||
|
|
"&", "&",
|
||
|
|
"<", "<",
|
||
|
|
">", ">",
|
||
|
|
""", `"`,
|
||
|
|
"'", "'",
|
||
|
|
).Replace(s)
|
||
|
|
}
|