Match String Node¶
The Match String node compares two string values and outputs a Boolean result based on the selected operation. It is useful for conditional logic involving string comparisons, such as matching object names or attribute values.
入力¶
- String(文字列)
The input string to be evaluated.
- Operation(処理)
Determines how the input string is compared to the key:
- Starts With:
True if the input string begins with the key.
- Ends With:
True if the input string ends with the key.
- Contains:
True if the input string contains the key anywhere within it.
- Key(キー)
The target string to compare against.
出力¶
- Result(結果)
A Boolean value indicating whether the input string matches the key according to the selected operation.