...check if a string is a valid floating-point number?

Author: ]-Morgue-[
Homepage: http://www.k-d-t.de

Category: Strings

function IsStrFloatNum(s: string): Boolean;
begin
  try
    
// try to convert the string into a floatnumber
    
StrToFloat(s);
    // if there is no error the result is true
    
Result := True;
  except
    
// if there is any error the result is false
    
Result := False;
  end;
end;

 

printed from
www.swissdelphicenter.ch
developers knowledge base