I am trying to replace all quotation marks in a given string and replace it with a descriptive value so I can submit the string into a database without having part of the string cut off. I am using the replace function.
replace(string, FindString, ReplaceWithstring)
When the FindString equals " I get a syntax error.
What is the proper way to search for a quotation mark?
replace(string, FindString, ReplaceWithstring)
When the FindString equals " I get a syntax error.
What is the proper way to search for a quotation mark?