parse_csv
Parses a csv string and returns an array.
Example
1
| {{ 'hello;world' | parse_csv: ';' }} => ['hello', 'world']
|
Type |
Parameter |
Description |
Required |
string |
input |
The input to parse. Comes before the | sign. |
Required |
Output
Type |
Description |
array |
The parsed data |