Registriert seit: 22. Mär 2005
Ort: Dingolfing
4.129 Beiträge
Turbo Delphi für Win32
|
Re: Welche Strings sind ok für => StrToBool
5. Apr 2005, 16:40
Man kann sich ja eine eigene function basteln:
Delphi-Quellcode:
function strtoboolean(s: String): Boolean; //Wer will kann auch strtobool...override; schreiben
begin
result:=False;
s:=lowercase(s);
if (s='wahr')or(s='ja')or(s='wasweisichnochalles') then result:=True;
end;
Manuel Eberl „The trouble with having an open mind, of course, is that people will insist on coming along and trying to put things in it.“
- Terry Pratchett
|