int StringGetChar(string text, int pos)
Returns character (code) from the specified position in the string.
文字列内の指定した位置から文字(コード)を返します。
Parameters:
パラメータ:
text - String.
文字列。
pos - Char position in the string. Can be from 0 to StringLen(text)-1.
文字列内の文字位置。0からStringLen(text)-1までを指定できます。
Sample:
サンプル:
int char_code=StringGetChar("abcdefgh", 3);
// char code 'c' is 99
|