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