GoFrame入门教程 GoFrame gstr-字符串长度

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

LenRune

  • 说明:​LenRune​返回​unicode​字符串长度。
  • 格式:
LenRune(str string) int
  • 示例:
func ExampleLenRune() {
var (
str = `GoFrame框架`
result = gstr.LenRune(str)
)
fmt.Println(result)
// Output:
// 9
}