I need to replace "in a string with nothing.
I tried:
replace(mystring, """, "")
I would like:
String = " "my string " " --> " my string"
What you are really wanting to do is replace any instance " with a blank string. To do this:
replace(mystring, chr(34), "")
chr(34) is the character code for a double quote. You could also use replace(mystring, """", "") that """" gets evaluated as one double-quote character, but I believe the chr(34) is much less confusing.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With