How to replace "" for only one "?

Hi! I’m using some API, and when i get something from it, the response is in JSON, but the JSON have 2 quotes insted of only one (like ““Text””:"“1"”,). Im trying to replace that duble " with a single one, but UiPath dont undestant only one quote. How can I do it??

Try with YourString.Replace("""","'")

Hi @hadrian.araujo,

Chr(34) should be ", so try:

YourString.Replace(Chr(34)+Chr(34),Chr(34))

@hadrian.araujo
Welcome to the forum

we hope that not particular visualisation is mistaken
grafik

Similar also to:
grafik

Yeah it was that im dumb :joy:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.