Split Function

Syntax

Array Split(String string, String/Array delimiters)

Return Value

Array

An array of strings containing the tokens.

Purpose

This function generates an array of strings from the specified string using the specified delimiter.

Parameters

string as String

The string to split.

delimiters as String/Array

The list of delimiters. Specify delimiters by passing a string in which each character of the string is a delimiter, or by passing an array of strings in which each string in the array is a delimiter.