String Operation
Given a string, return the result of the selected operation.
Perform a selected operation on a given string and return the result.
Overview
The String Operation feature enables manipulation of strings by applying various operations such as splitting or transforming text based on specific criteria.
Inputs
| Name | ID | Description |
|---|---|---|
| Input String | input | The input string on which the operation will be performed. |
| Operation | operation | The string operation to apply (e.g., split, uppercase, lowercase). |
| Split Separator | split_separator | The delimiting regular expression used for splitting the input. Needed only for the split operation. |
Outputs
| Name | ID | Description |
|---|---|---|
| Success | success | Boolean indicating whether the operation was successful. |
| Output | output | The result of the string operation. |
Notes
- Ensure the input string is valid and matches the expected format for the operation.
- The
split_separatoris required only for thesplitoperation; it can be left blank otherwise. - Action ID for this operation:
0aaec6a7-927b-4189-9439-108f53b61ab1.
Updated 10 months ago
