I have a csv which has a column called "Value" and in it there are a combination of strings & special characters.
Eg:
Value
abc
xyz
"
pqr
'
I want to replace the " and ' special characters with empty string "" in the output file.I used the derived column "Replace" function as
Replace(Replace(Value,"'",""),"\"","")
and it doesn't seem to work
tried this: in the derived column
Replace(Replace(Value,"'",""),"\"","")
I expect the output to be in a flat file with value column as
Value
"abc"
"xyz"
""
"pqr"
""