Append True Or False String
- Updated2023-02-17
- 2 minute(s) read
Append True Or False String
Appends one of two possible strings, determined by a Boolean value, to another string you specify.
Inputs/Outputs

string
The string to which you want to concatenate another string.
Default value: Empty string

true string
The string you want to concatenate to string if selector is True.

false string
The string you want to concatenate to string if selector is False.

selector
Boolean value that determines the string to concatenate to string.
| True | Appends true string. |
| False | Appends false string. |

output string
The resulting string after the node concatenates either true string or false string to string.