后浪云GoFrame教程:GoFrame gstr-字符串长度
LenRune
- 说明:
LenRune
返回unicode
字符串长度。 - 格式:
LenRune(str string) int
- 示例:
func ExampleLenRune() {
var (
str = `GoFrame框架`
result = gstr.LenRune(str)
)
fmt.Println(result)
// Output:
// 9
}
版权声明:
作者:后浪云
链接:https://www.idc.net/help/192881/
文章版权归作者所有,未经允许请勿转载。
THE END