String To Boolean
Converts a String into a Boolean.
Description
Attempts to parse the provided string to convert it into a boolean value.
If the string is 'true' (case-insensitive match), then it returns true
, otherwise false
.
Inputs
- s (Object): The string to convert.
Outputs
- boolean (Boolean): The result of the conversion.