length

プロパティ Type property
文字列.length Format string. Length
Commentary
文字の長さを返します。 Returns the length of the character. 日本語1文字も1としてカウントされます。 Japanese one is counted as a character.
サンプルコード Sample code
str = "Sample"; str = "Sample";
n = str.length; n = str.length;
outputs[0] = n; outputs [0] = n;