| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Convert a string to a boolean value
Source position: sysstrh.inc line 238
function StrToBool(  | 
const S: string  | 
):Boolean;  | 
const S: string;  | 
const FormatSettings: TFormatSettings  | 
):Boolean;  | 
StrToBool will convert the string S to a boolean value. The string S can contain one of 'True', 'False' (case is ignored) or a numerical value. If it contains a numerical value, 0 is converted to False, all other values result in True. If the string S contains no valid boolean, then an EConvertError exception is raised.
On error, an EConvertError exception is raised.
  | 
Convert a boolean value to a string.  |