Split

Prev Next

General

The Split function splits the given value using the given separator and returns a
list of all resulting values.

Syntax

The syntax of the Split function is:

Split Function Syntax

Split(<value>, "separator")

Examples

The following Expression returns a list that contains "Africa", "Asia", "Americas":

Split Function Example

Split("Africa;Asia;Americas", ";")