请问format可不可以把类似于123.456转换成123456呢,求教(50分)

  • 主题发起人 主题发起人 mykai
  • 开始时间 开始时间
这么惨都没人会啊
 
不行吧,你可以这样
s:=StringReplay(FloatToStr(123.456),'.','',[rfReplaceAll]);//String
or
i:=StrToInt(StringReplay(FloatToStr(123.456),'.','',[rfReplaceAll]));//Integer
 
function FloatToInt(Value: Double): Cardianl;
begin
while abs(Value-Trunc(Value))>1e-6 do
Value:=Value*10;
Result:=Trunc(Value)
end;
 
Format方法不行,以上两位的替换办法都不错。
 
谢谢各位
结贴
 

Similar threads

回复
0
查看
978
不得闲
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部