426
Views
3
Comments
Escaping quotes
Question
Hey ... I hope I haven't missed something obvious, but I need to replace double quotes (") with single quotes (') in a string.

How do I do that?
Thanks!
Stefan
Hi Stefan,

Double quotes are escaped like "" (double double quotes :)) in Service Studio strings. To replace a double quotes (") with single quotes (') you can do
Replace(yourText, """", "'")

Cheers,
Tiago Simões
Fabulous!

Thanks Tiago!

It Works .Thanks for The Reply

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.