string StringSetChar(string text, int pos, int value)
Returns the string copy with changed character in the specified position.
指定した位置に、変更された文字をコピーした文字列を返します。
Parameters:
パラメータ:
1 2 3 4 5 6 7 8 | <b>text</b> - String where character will be changed. 変更する文字列の文字。 <b>pos</b> - The character position in the string. Can be from 0 to <a href="20170707134923/http://www.metasys-seeker.net/MQL4_Reference_ver1/17-04_StringLen.html">StringLen(text)</a>. 文字列内の文字位置。0から<a href="20170707134923/http://www.metasys-seeker.net/MQL4_Reference_ver1/17-04_StringLen.html">StringLen(text)</a>にすることができます。 <b>value</b> - New char ASCII code. 新しい文字のASCIIコード。 |
Sample:
サンプル:
1 2 3 | string str="abcdefgh"; string str1=StringSetChar(str, 3, 'D'); // str1 is "abcDefgh" |