StrFmt、StrLFmt: 针对 PChar 的格式化函数
摘要:
//StrFmt、StrLFmt:针对PChar的格式化函数varbuf:array[0..255]ofChar;p:PChar;beginp:=StrFmt(buf,'%d,%d',[123,MaxInt]);ShowMessage(buf);{123,2147483647}ShowMessage(p);{123,2147483647}p:=StrLFmt(buf,9,'%d,%d',[123,MaxInt]);ShowMessage(buf);{123,2147}ShowMessage(p);{123,2147}end; 阅读全文
posted @ 2011-05-19 22:51 jxgxy 阅读(475) 评论(0) 推荐(0) 编辑