SPLIT_TO_RECORD
Last updated: 9/14/2026
Returns the given string split by the provided delimiter.
Syntax
SPLIT_TO_RECORD(fieldNames, splitBy, filterEmptyValues, value)
Arguments
| Name |
Type |
Description |
Default Value |
| fieldNames |
string |
|
|
| splitBy |
string |
|
',' |
| filterEmptyValues |
boolean |
|
false |
| value |
string |
|
|
Examples
| fieldNames |
splitBy |
filterEmptyValues |
value |
Output |
| 'a,b,c' |
',' |
false |
'1,2,3,4' |
{a: `1`, b: `2`, c: `3`} |
| 'a,b,c' |
',' |
false |
'1,2' |
{a: `1`, b: `2`, c: ``} |
| 'a,b,c' |
',' |
true |
'1,,3' |
{a: `1`, b: ``, c: `3`} |