convertCSVtoTable
This procedure transforms a comma-separated string or a flat array of strings into a record set containing the array items.
Parameters
| Parameter | Description |
|---|---|
delimitedList | Objects as a comma-separated list or array of strings; mandatory |
Attributes
Attribute | Type |
|---|---|
| string |
Example
CALL "UTILS.convertCSVtoTable"(
"delimitedList" => ARRAY('John', 'Paul', 'George', 'Ringo')
);;