I am trying to remove the double-quoted in column values. for that, I am using regex_expression and replace but it doesn't remove the double-quoted can anyone please help me on this
I have value like this
"XYZ.COM "
I need to replace the above as
XYZ.COM
I tried this
regexp_replace(domain), '[^\w]+^.','','g')
replace(domain,'"','')
Note : I don't want to remove the dot from the string
replace(domain,'"','')should do exactly that.