Appearance
文字列の長さを返す
string.len (s)
文字列 s の長さ(文字数)を返します。空文字列の場合は長さは 0 です。
s
0
local s = "Hello" print(string.len(s)) -- 5
この例では、文字列"Hello"の長さを返します。
"Hello"
string.sub