Split String
Split String is an advanced function used for splitting a string into its substrings based on a given delimiter/regular expression. It returns an array of strings after splitting an input string based on the delimiting regular expression.
In the following example, a string is given two items to split on (comma and semicolon)
Before: 1,2;3,4
After:
1
2
3
4
Tags: Split Text