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
| String | Any text value to be split. |
| Delimiter | The 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 |
