Parsing Double Quotes

  • Thread starter Thread starter Public Served
  • Start date Start date
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?
 
You can use the Replace() function to replace the double quotes with
nothing/something else
Replace("My ""dog"" has flees.", """", "'")
 
Back
Top