April 30, 2020
4:39 p.m.
Hi - This is on Pharo 7 with Neo-CSV-Core-SvenVanCaekenberghe.28 In a CSV file I have several instances of records like "123","asdf", "one two "three" four five", "5678" When that line is parsed instead of an Array with 4 records '123' 'asdf' 'one two "three" four five' '5678' I instead get '123' 'asdf' '"one two "three" four five"' '"5678"' Is there a standard way or setting for handing strings with quoted strings in them? I'd like to end up with the expected result rather than the result I'm getting. Thanks Paul