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