Split Function
- Mise à jour2025-07-21
- Temps de lecture : 1 minute(s)
Split Function
Syntax
Array Split(String string, String/Array delimiters)
Return Value
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.