Skip to main content
[Command] Split text
Sophie avatar
Written by Sophie
Updated over a week ago

Definition and Usage

The Spilt text command is used to split a string into parts based on a specified delimiter or character. It can divide large strings into smaller logical units, thus enabling parallel processing of sub-parts. Common use cases include:

  • Splitting names, addresses, and data values for processing

  • Dividing text or CSV data for import

  • Splitting file paths or URLs into parts

  • Tokenization for string analysis


Parameter Values

Set Parameters

Parameter

Description

Original text

Enter the text to split or select a text variable

Delimited type

Select the delimiter type

Delimiter

Select a delimiter to use for the split

Save text list as

Save the split text list as a new variable

Error Handling

Parameter

Definition

When error occurs

Select the action to be performed when an error occurs

  • Terminate the project

  • Ignore the error and execute the next command

  • Retry action


Example

The above workflow command will split the phrase "Hello World" into to separate text strings using Space as a standard delimiter. The final results are saved as a text list of two strings: "Hello" and "World".

Did this answer your question?