我想获取一个变量,并将其作为命令添加到字符串中以生成Unicode字符。有关通过伪C ++的说明,请参见下文:
for (int i = 0; i <= 50625; i++){
hexcode = dec_to_hex(i+32); //this already works & returns a hex string
unicode_var = U"\u$(hexcode)"; //inserts hexcode into the command for a Unicode char (I used PHPish syntax to help convey this)
}
我该怎样做&#34;插入&#34;变量作为字符串并将其解释为命令的一部分? 如果这是一个愚蠢的简单问题,请原谅我; C ++对我来说仍然很神秘。