Registriert seit: 5. Okt 2007
331 Beiträge
Delphi XE2 Professional
|
Re: Nach Dezimalzeichen (. oder ,) des Systems fragen. Wie?
28. Mär 2008, 07:40
Ich habe auch gesucht wie ich es umsetze & jetzt so gelöst.
Delphi-Quellcode:
function String_To_Double(Zahl : String) : Double;
begin
try
case DecimalSeparator of
'.' : Result := StrToFloat(StringReplace(Zahl, ',', DecimalSeparator, []));
',' : Result := StrToFloat(StringReplace(Zahl, '.', DecimalSeparator, []));
else Result := StrToFloat(FloatToStr(0.0));
end;
except
Result := StrToFloat(FloatToStr(0.0));
end;
end;
|
|
Zitat
|