split() Function

Splits text into a list of text elements, delimited by the text specified in the separator.

Syntax

split ( text, separator )

text: (Text) The text to be split.

separator: (Text) The text delimiter by which the text will be separated.

Returns

Text

Examples

split("John Smith","m") returns John S, ith

Open in Github Built: Fri, Nov 04, 2022 (07:10:52 PM)

On This Page

FEEDBACK