string CharToStr(int char_code)
Conversion of the symbol code into a one-character string.
シンボル コードを1文字の文字列に変換します。
Parameters:
パラメータ:
1 2 | <b>char_code</b> - ASCII char code. ASCII文字コード。 |
Sample:
サンプル:
1 2 | string str="WORL" + CharToStr(44); // 44 is code for 'D' // the resulting string will be WORLD |