Hi,
I’m trying to modify a string so that and I can use it with my REST API. I need to replace the escape characters. So far I’ve been able to do it with most characters, except the apostrophe. Here’s the code that I have.
someText = string.gsub(someText, "(%')", "%%27");
Any ideas on how I can replace the apostrophe? Thank you very much.
All the best,
Don
