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.
Đầu Vào (Inputs)¶
- Chuỗi Ký Tự/String
The input string to be evaluated.
- Thao Tác (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.
- Khóa (Key)
The target string to compare against.
Đầu Ra (Outputs)¶
- Kết Quả (Result)
A Boolean value indicating whether the input string matches the key according to the selected operation.