其他分享
首页 > 其他分享> > SysUtils.FmtStr、SysUtils.Format - 格式化输出

SysUtils.FmtStr、SysUtils.Format - 格式化输出

作者:互联网

SysUtils.FmtStr、SysUtils.Format - 格式化输出

FmtStr 是个过程, 它是用第一个参数来返回结果的; Format 是个函数, 返回值就是格式后的结果. 举例:
var
  str: string;
begin
  FmtStr(str, '最大整数是: %d', [MaxInt]);
  ShowMessage(str);                           {最大整数是: 2147483647}

  str := Format('最大整数是: %d', [MaxInt]);
  ShowMessage(str);                           {最大整数是: 2147483647}

  {此时应该顺便提提 ShowMessageFmt 方法}
  ShowMessageFmt('最大整数是: %d', [MaxInt]);  {最大整数是: 2147483647}

  {它们的格式化参数都是一样的}
end;
格式化函数非常强大, 有专题介绍: http://www.cnblogs.com/del/archive/2007/12/18/1005161.html

SysUtils 单元下的公用函数目录

posted on 2008-03-31 22:49  万一  阅读(4653)  评论(1)  编辑  收藏

标签:格式化,Format,整数,FmtStr,SysUtils,str
来源: https://blog.51cto.com/u_14617575/2746271