Parsing Double Quotes

P

Public Served

I need to parse double quotes out of a text field, naturally leaving
the rest of the field's content intact.

Is there a way to accomplish this through a query?
 
A

Allen Browne

You can use the Replace() function to replace the double quotes with
nothing/something else
Replace("My ""dog"" has flees.", """", "'")
 
Top