[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Try to convert a string to a boolean value
Source position: sysstrh.inc line 244
function TryStrToBool( |
const S: string; |
out Value: Boolean |
):Boolean; |
const S: string; |
out Value: Boolean; |
const FormatSettings: TFormatSettings |
):Boolean; |
TryStrToBool tries to convert the string S to a boolean value, and returns this value in Value. In this case, the function returns True. If S does not contain a valid boolean string, the function returns False, and the contents of Value is undetermined.
Valid boolean string constants are in the FalseBoolStrs (for False values) and TrueBoolStrs (for True values) variables.
|
Convert a string to a boolean value |
|
|
Convert string to boolean value, returning default in case of error |