executeScript_sandbox command to remove certain character from csv file

I would like to remove a certain character that is repetitively used in my csv file, is there a way to do it with this command?

“key, alarm status”
“1723750890, minor”

this is my csv file and I want to remove all the character " in it

For a solution please see my post on UI Vision / Selenium IDE string operations.

Specifically see Replace a string in var - #3 by newuserkantu

If you only want to remove all " use your favorite text editor to do it before calling the script (or do you want to replace them while reading the CSV file?)

You will have problems if your string between the commas suposes to contain a comma.

Another approach: replace [, ] into [", "] using the same favorite text editor above ;o) and you’re done!