看书上的format函数介绍怎么看都看不懂,大伙帮帮我好吗?能否详细点!!谢谢!

解决方案 »

  1.   

    function Format(const Format: string; const Args: array of const): string; $[SysUtils.pas
    功能 返回按指定方式格式化一个数组常量的字符形式
    "%" [索引 ":"] ["-"] [宽度] ["." 摘要] 类型
    Format('x=%d', [12]); //'x=12' //最普通
    Format('x=%3d', [12]); //'x= 12' //指定宽度
    Format('x=%f', [12.0]); //'x=12.00' //浮点数
    Format('x=%.3f', [12.0]); //'x=12.000' //指定小数
    Format('x=%.*f', [5, 12.0]); //'x=12.00000' //动态配置
    Format('x=%.5d', [12]); //'x=00012' //前面补充0
    Format('x=%.5x', [12]); //'x=0000C' //十六进制
    Format('x=%1:d%0:d', [12, 13]); //'x=1312' //使用索引
    Format('x=%p', [nil]); //'x=00000000' //指针
    Format('x=%1.1e', [12.0]); //'x=1.2E+001' //科学记数法
    Format('x=%%', []); //'x=%' //得到"%"
    S := Format('%s%d', [S, I]); //S := S + StrToInt(I); //连接字符串
      

  2.   

    函数定义:
      function Format(const Format: string; const Args: array of const): string;
    意思:
      进行一种格式输出,是按const Format: string定制的格式进行输出的,如果你字符串中有变量参数呢,就使用 “%”在格式字符串const Format: string中进行占位,然后系统在输出时用你在后面的const Args: array of const(参数数组)里的值进行置换;这些东西帮助里说得很清楚的:)
      

  3.   

    S := Format(%5.-d', [1]); 00001