Search

Split As List

Last Updated: May 10, 2022

Articles

Use this function to split input string with the specified delimiter.

Syntax

Split As List (input_string, delimiter)

Parameters

Input Parameter Name Description
input_string String value
delimiter Delimiter character or string

Returns

Return value Description
text Returns the split string as a list

Sample

Split As List (this is - a test string, -)

  • Splits the string this is - a test string at the delimiter -.
    Returns: this is, a test string

To view all the Text functions, click here.

Did you find what you were looking for?