894
Views
3
Comments
Solved
Replace single double quote
Question

Hi, i've a json save as a text, i must replace the single " with \" 

Replace(Response,",\")

there is an escape character to use a single " inside the SyntaxEditor?


2024-07-05 14-16-55
Daniël Kuhlmann
 
MVP
Solution

Hi Andrea,

Try

Replace(Response, """", "\""")
2024-07-05 14-16-55
Daniël Kuhlmann
 
MVP

With Literal strings you put two double quotes for every single one

UserImage.jpg
Andrea Sartori

Thanks!

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