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?
Hi Andrea,
Try
Replace(Response, """", "\""")
With Literal strings you put two double quotes for every single one
Thanks!