I need to create a .csv but there are some column that not are display correct.
a b c -----> column
cc; dsf -->value
I need to delete characted uncode from a string that the user can insert in db.
My code is
translate(column, chr(10)||chr(11)||chr(13)||CHR(09), ' ')
I think there are other character that can gives problem to my .csv
anyone can help me?