true
or false
). It evaluates the input string and returns true
if the string is "true"
(case-insensitive), and false
otherwise.
a
(string, default: ""
) - The input string to be converted to a boolean value.result
(boolean) - The boolean result of the conversion. Returns true
if the input string is "true"
(case-insensitive), and false
otherwise.a
input of the To Boolean (String) node.true
or false
) from the result
output."true"
or "false"
, and you want to convert it to an actual boolean value for further processing in your spell.
"true"
or "false"
) to the a
input of the node.true
or false
) from the result
output."true"
is connected to the To Boolean (String) node, which converts it to the boolean value true
. The boolean output is then connected to a Branch node, which executes “Action 1” if the value is true
, and “Action 2” if the value is false
.
"true"
or "false"
(case-insensitive) for accurate boolean conversion. Other string values will be considered as false
."true"
or "false"
(case-insensitive), the node will output false
. Make sure to provide the correct string values for accurate boolean conversion.