GoFrame入门教程 GoFrame gstr-转义处理

2024-02-25 开发教程 GoFrame入门教程 匿名 4

AddSlashes

  • 说明:​AddSlashes​将字符串中的符号前添加转义字符​'\'
  • 格式:
AddSlashes(str string) string
  • 示例:
func ExampleAddSlashes() {
var (
str = `'aa'"bb"cc\r\n\d\t`
result = gstr.AddSlashes(str)
)
fmt.Println(result)
// Output:
// \'aa\'\"bb\"cc\\r\\n\\d\\t
}

StripSlashes

  • 说明:​StripSlashes​去掉字符串​str​中的转义字符​'\'​。
  • 格式:
StripSlashes(str string) string
  • 示例:
func ExampleStripSlashes() {
var (
str = `C:\\windows\\GoFrame\\test`
result = gstr.StripSlashes(str)
)
fmt.Println(result)
// Output:
// C:\windows\GoFrame\test
}

QuoteMeta

  • 说明:​QuoteMeta​为str中​'. \ + * ? [ ^ ] ( $ )​中的每个字符前添加一个转义字符​'\'​。
  • 格式:
QuoteMeta(str string, chars ...string) string
  • 示例:
func ExampleQuoteMeta() {
{
var (
str = `.\+?[^]()`
result = gstr.QuoteMeta(str)
)
fmt.Println(result)
}
{
var (
str = `https://goframe.org/pages/viewpage.action?pageId=1114327`
result = gstr.QuoteMeta(str)
)
fmt.Println(result)
}
// Output:
// \.\\\+\?\[\^\]\(\)
// https://goframe\.org/pages/viewpage\.action\?pageId=1114327
}