Need to replace " with in. or escape it so it will work with my sql update and insert statements
I tried the following:
newstring = replace(oldstring, """", "in."
which doesnt give an error, but doesnt replace the "
Also tried, which gives an error
newstring = replace(oldstring, """, "in."
Thanks
I tried the following:
newstring = replace(oldstring, """", "in."
which doesnt give an error, but doesnt replace the "
Also tried, which gives an error
newstring = replace(oldstring, """, "in."
Thanks