我想用混合的希腊语和西里尔符号定义一个字符串常量。像这样的东西
const
some_const = 'cyrillic symbols' + $03C9;
其中$03C9
是来自there的小写字母 omega 。
也许,我应该在数据模块中将some_const
作为变量并初始化它。
//datamodule
var
some_const = 'cyrillic symbols' + some_function_to_make_string($03C9);
那么,some_function_to_make_string(code : Word)
的正确函数是什么?
我可以将此some_const
与 TStringGrid.Cells [aCol,aRow] 一起使用吗?