文字列の長さ【StringLen】int StringLen(string text) Returns character count in a string.文字列の文字をカウントして返します。Parameters:パラメータ:<b>text</b> - String where the length must be calculated. 長さを計算する必要がある文字列。12<b>text</b> - String where the length must be calculated. 長さを計算する必要がある文字列。 Sample:サンプル: string str="some text"; if(StringLen(str)<5) return(0);12 string str="some text"; if(StringLen(str)<5) return(0);