[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
Convert a string to a boolean value
Source position: sysstrh.inc line 160
function StrToBool( |
const S: String |
):Boolean; |
StrToBoolwill convert the string Sto a boolean value. The string Scan 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 Scontains no valid boolean, then an EConvertErrorexception is raised.
On error, an EConvertErrorexception is raised.
|
Convert a boolean value to a string. |