Forum Discussion
Hi, I did encounter this unlikely double quotes before so what I did was do a cleanup of those characters using a mapper with binary inputβ¦ first replace all " with " to escape that character then replace the double-quotes with the regular one π
Hi,
Thanks for reply, will this resolve issue with only double quotes or also non english characters are mapped in transformation. (if possible can you include the formula used in transformation.)
can you please tell the reason for including document to binary before csv parser.
Thank you in advance.
- alchemiz6 years agoContributor III
CSV parser input needs to be a binary
.replace(/"/g,β\"β). β replace all " to "
.replace(/β/g,β"β) β replace all β to "
.replace(/β/g,β"β) β replace all β to " - alchemiz6 years agoContributor III
Hereβs a better version, the first version might fail for large csv files, this version replaces the left and right double quote characters per row
Handling Oracle non-standard CSV exports_2020_06_06.slp (5.1 KB)
non-double-quotes.txt (109 Bytes)