- Documentation
- Activities
- Text
- Split text
Break text into parts using a separator (e.g., split by comma)
Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
Input Text inputText | expression | Required | — | — |
Split Mode splitMode | enum | Optional | delimiter | —delimiternewlineregexfixedLength |
Delimiter delimiter | string | Optional | , | — Shown when splitMode = delimiter |
Pattern regexPattern | string | Optional | — | — Shown when splitMode = regex |
Chunk Length chunkLength | number | Optional | — | — Shown when splitMode = fixedLength |
Trim Results trimResults | boolean | Optional | true | — |
Remove Empty Entries removeEmpty | boolean | Optional | true | — |
Output Variable outputVariable | variable | Optional | textParts | — |
Output
textPartsArrayArray of text segments after splitting
lengthNumber[index]String
Compatibility
WindowsLinuxAttendedUnattended
Related activities
Change text case
Change text to UPPERCASE, lowercase, Title Case or Sentence case
Combine text
Combine several values into one piece of text, with nothing between them
Contains text
Check whether some words appear inside a piece of text
Convert datetime to text
Turn a date into readable text like "January 5, 2025"
Ends with
Check whether text ends with a given suffix
Extract substring
Extract a portion of text by position