Functions Language

Split

The Split() function returns an array of strings created by splitting a single input string using a specified delimiter.


Syntax:

Split(String, Delimiter)
  • In the Quintessence Editor (Studio) using Python language, use: Qx.Split()
 See parameter descriptions

StringAny text value to be split.
DelimiterThe text used to divide the input string into separate array elements.

    Examples:

    The examples provided below are based on fictitious data for illustrative purposes only.

    > Example 1: Split a string using a specific delimiter


    Formula:

    return := Split("ab##cd##ef##gh","##");

    Result:

    ab
    cd
    ef
    gh