StringGetChar

2019/07/17 19:00
88

int StringGetChar(string text, int pos)

文字列の指定位置の文字コードを返す。

Parameters:
text - 文字列
pos - 位置。0からStringLen(text)-1の範囲。
Sample:
int char_code=StringGetChar(“abcdefgh”, 3);
// char code ‘c’ is 99

コメント