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

Compare with Current View Page History

« Previous Version 8 Next »

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

使用方式

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

接口文档

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



AddSlashes

  • 格式:  
  • 说明:
  • 示例:

    str:=`aaaa'"\dddd`
    rsStr:=gstr.AddSlashes(str) 
    fmt.Println(rsStr)
    //输出结果:
    aaaa\'\"\\dddd
  • No labels