09-23-2020 12:00 PM
Hi
I am generating csv from csv generator snap and i want to parse this csv i.e but csv parser snap cant be connected to the output of csv generator. How can i do this
09-23-2020 12:07 PM
Despite its name, the CSV Generator doesn’t generate csv. It parses the CSV in its “Edit CSV” input, and generates the corresponding JSON-compatible output document. So you’re already parsing CSV within the CSV Generator itself.
If you really wanted to try a round trip, connect a CSV Formatter, which will convert the data to a CSV-format binary file, then to a CSV Parser, which will parse that file and output a JSON-ish document:
09-23-2020 12:11 PM
Thanks…i will try.