intellij-csv-validator
intellij-csv-validator copied to clipboard
Respect delimiter quotes
In our case
"Not available","Nicht verfügbar"
gets destroyed to
Not available,Nicht verfügbar
after editing a different row though table editor
This is both in auto-detect and if you manually set it to " character.
We use the " as per recommended way to only be used for multi word strings.
@dereuromark This is due to the fact that editing the data via table editor transforms the CSV text representation in a table-like data-structure, without a value based change-observer. Some details can be found in a similar issue #110 from some time ago.
Please also note https://github.com/SeeSharpSoft/intellij-csv-validator#table-editor resp. https://github.com/SeeSharpSoft/intellij-csv-validator#enforce-value-quoting
I currently don't have the capacity time-wise to rework this. Contributions are welcome!