Keragon’s Split Text Helper allows you to divide text into multiple segments based on a specified separator. You can return the first part, the last part, or all parts as a list. This is useful for breaking down structured text fields such as names, addresses, or codes.
How to Use the Split Text Helper
-
Open your workflow editor.
-
Click the + icon to add a new step.
-
In the step selection panel, click "Helpers".
-
From the Helpers options, select "Text Helpers".
-
Choose the "Split" action.
-
Click the Value field.
-
Use the Variable Selector to map the text value you want to split.
-
Set the Separator field with the character or word to split on (e.g., comma
,
, space-
). Defaults to space if left empty. -
Click the Result field and select how you want the result returned:
-
First: Returns only the first segment after splitting.
-
Last: Returns only the last segment after splitting.
-
All (as an array): Returns all segments as a list/array.
-
-
Click "Save" to apply changes.
-
Click "Test Step" to preview the result.
-
Go to the Outputs tab to view the split result.
Example Result:
-
Input:
"Apple,Banana,Cherry"
-
Separator:
,
-
Result Option: All (as an array)
-
Output:
["Apple", "Banana", "Cherry"]