String Ends With
Purpose of the Node
Section titled “Purpose of the Node”The String Ends With node is designed to determine whether a given string ends with a specified suffix. This node is particularly useful in scenarios where string pattern matching or validation is required.
| Pin Name | Pin Description | Pin Type | Value Type |
|---|---|---|---|
| string | The input string to be checked. | String | String |
| suffix | The string to check against. | String | String |
| ends_with | A boolean value indicating whether the input string ends with the specified suffix. | Boolean | Boolean |
The node takes two string inputs: string and suffix. It outputs a boolean value indicating whether string ends with suffix.