You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Next »

gstr提供了丰富的字符串处理。组件内置了90+个常用的字符串处理方法。

使用方式

import "github.com/gogf/gf/text/gstr"

接口文档

https://godoc.org/github.com/gogf/gf/text/gstr



AddSlashes

  • 说明:该方法输入一个带有英文单引号('),双引号("),反斜杠(\)的字符串时,会强行转义为原样输出
  • 示例:

    str:=`'aa'"bb"cc\r\n\d\t` // 需要转义的字符串
    rsStr:=gstr.AddSlashes(str) 
    fmt.Println(rsStr)
    //输出结果:  \'aa\'\"bb\"cc\\r\\n\\d\\t
  • No labels