在Delphi中怎样将string转换成double? ( 积分: 50 )

  • 主题发起人 主题发起人 zyh888
  • 开始时间 开始时间
Z

zyh888

Unregistered / Unconfirmed
GUEST, unregistred user!
在Delphi中怎样将string转换成double?
请举例说明一下..谢谢!
 
在Delphi中怎样将string转换成double?
请举例说明一下..谢谢!
 
var
a:Double;
s:String;
begin
s:='1';
if TryStrToFloat(s,a) then
showmessage('转换成功');
end;
 
StrToFloat('100')
 
function StrToFloat(const S: string): Extended
overload;
 
多人接受答案了。
 
后退
顶部