Format函数的用法。(5分)

  • 主题发起人 主题发起人 jybzjf
  • 开始时间 开始时间
J

jybzjf

Unregistered / Unconfirmed
GUEST, unregistred user!
各位上午好,为什么我用了<br>present:=format('%d.%d.%d',[spinedit1.Text,combobox1.Text,combobox2.Text]);会提示出错呢,错误如下:<br>Format '%d' invalid or incompatible with argument;<br><br>(说明,Present是我事先定义好了的String型变量);<br><br>还有,shortdateformat这个函数是做什么用的,是什么做含义啊?<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
 
present:=format('%s.%s.%s',[spinedit1.Text,combobox1.Text,combobox2.Text]);<br>%s
 
%d对应数值<br>字符串用%s
 
format('%d',[integervalue]);<br>format('%f',[realvalue]);<br>format('%s',[stringvalue]);<br>format('-%s',[stringvalue]);//==‘-’号表示:字符左对齐方式;<br>format('%m.nf',[value])//==='%m.nf'表示将数据格式化成有m位其中小数占n位的形式;
 
后退
顶部