在Delphi中,您可以声明要存储在模块资源部分的String Table中的字符串。
resourcestring
rsExample = 'Example';
在编译时,Delphi将为其分配一个ID并将其存储在String Table中。
有没有办法检索声明为resourcestring的字符串的ID?
原因是我使用的包与gnugettext一样。 System.pas中的某些函数(如LoadResString)被挂钩,因此当我在表达式中使用resourcestring时,它将被替换为不同的字符串(转换)。当然,这非常方便,但有时我需要资源字符串的原始(未翻译)文本。
当我能够检索字符串的资源ID时,我可以调用LoadString API来获取原始文本,而不是翻译文本。
答案 0 :(得分:10)
要获取资源字符串的资源ID,您可以将字符串的地址强制转换为PResStringRec
类型,然后访问Identifier
值。
试试这个样本
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils;
resourcestring
rsExample = 'Example';
begin
try
Writeln(rsExample);
Writeln(PResStringRec(@rsExample)^.Identifier);
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
readln;
end.