int StringGetChar(string text, int pos)
Returns character (code) from the specified position in the string.
文字列内の指定した位置から文字(コード)を返します。
Parameters:
パラメータ:
1 2 3 4 5 | <b>text</b> - String. 文字列。 <b>pos</b> - Char position in the string. Can be from 0 to <a href="20170707125626/http://www.metasys-seeker.net/MQL4_Reference_ver1/17-04_StringLen.html">StringLen(text)</a>-1. 文字列内の文字位置。0から<a href="20170707125626/http://www.metasys-seeker.net/MQL4_Reference_ver1/17-04_StringLen.html">StringLen(text)</a>-1までを指定できます。 |
Sample:
サンプル:
1 2 | int char_code=StringGetChar("abcdefgh", 3); // char code 'c' is 99 |