CSV is adding " to the start and end

Hi guys I have this situation, I got the list of all rows on the Data Store, then I use a aggregator for crear a text with comas, after all I use the CSV, but the CSV is not a valid file, the reason, “”, thanks for your help

That’s because whatever’s going in was already in CSV format.

2 Likes

How can I delete those " ?

You can use the built-in replace function with a pattern to remove the leading and trailing double quotes.

2 Likes

If you got the solution.
Please tell me.

Hey @Noe_Blackberry ,
You can replace those " with a function called ‘replace’. You can also use this function in the next module, where you want to use the data. Below is an example :
image

image

Do let me know if this works.

2 Likes