在Format(const Format: string; const Args: array of const): string;的结果中如何包含“%”(10

  • 主题发起人 主题发起人 魏启明
  • 开始时间 开始时间

魏启明

Unregistered / Unconfirmed
GUEST, unregistred user!
在Format(const Format: string
const Args: array of const): string;的结果中如何包含“%”(100分)
<br />function Format(const Format: string
const Args: array of const): string
overload;
现在想在结果中显示‘%f%d’之类的字符,如何实现


 
showmessage(Format('%s', ['%d%f']));
 
format('hello world %%f %%d haha', []);
用双写的 % 就可以了 :)
 
temp :='......' +#37+'f'+#37+'d'.........';.
用#37代替%
Format('%s', [temp]);
 
okok
谢谢了,看来法子是人想的
beta的方法我最中意,
另外的两位提供的方法,我原本应该想得到的,却……

哈哈,
 
多人接受答案了。
 
后退
顶部