CSV_PARSE_TO_OBJECTS
Parses CSV-formatted text with auto-detection of the delimiter character and parses output into an array of objects.
Categories: Data Parsing/Conversion
Syntax
CSV_PARSE_TO_OBJECTS(text)
Examples
Example 1
Input
1
{
2
"my_action": {
3
"message": "first, second, third\n1, 2, 3"
4
}
5
}
Formula
CSV_PARSE_TO_OBJECTS(my_action.message)
Output
1
[
2
{
3
"first": "1",
4
"second": "2",
5
"third": "3"
6
}
7
]
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.