Is it possible to read_csv a file that has a double quote as a value and fields are wrapped in double quotes to ignore commas as values? An example file looks like this:
"fie,ld1","fi"e,ld2","field3"
"test","testing","meow"
Desired output is this:
fie,ld1 fi"e,ld2 field3
test testing meow
I've tried all sorts of read_csv options, chat gpt, web searching.