函数:string.len 获取字符串长度

优质
小牛编辑
130浏览
2023-12-01

函数名称:获取字符串长度

函数功能:获取字符串长度

函数方法

num = string.len(str)

参数类型必填说明
strstring需要计算的字符串
返回值类型说明
numnumber/nil字符串长度

函数用例

str="JUST DO IT"
num = string.len(str)
dialog("字符串长度:"..num,5000)