CSV_PARSE
Parses CSV-formatted text with auto-detection of the delimiter character and parses output into an array of arrays.
Categories: Data Parsing/Conversion
Syntax
CSV_PARSE(text)
Examples
Example 1
Input
1
{
2
"my_action": {
3
"message": "first, second, third\n1, 2, 3"
4
}
5
}
Formula
CSV_PARSE(my_action.message)
Output
1
[
2
[
3
"first",
4
"second",
5
"third"
6
],
7
[
8
"1",
9
"2",
10
"3"
11
]
12
]
Sample actions
Select an action to inspect
You can also click "Copy actions" and paste them in your Tines story to see how they work.