Forum Discussion
2 Replies
- ptaylorEmployee
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:
- yash_vermaNew Contributor
Thanks…i will try.