Need to remove "\" from json string

Hey @michelle.soto,

To fix the issue with your JSON string in UiPath, you can use the Deserialize JSON activity and then access the properties directly instead of trying to eliminate double quotes. Here’s how you can approach this:

  1. Deserialize JSON:
  • Use the Deserialize JSON activity to convert your JSON string into a JObject so that you can work with its properties easily.
  1. Access the properties:
  • After deserializing, you can access the Paragraph and Question properties as needed.

Please refer to the below thread to know more about accessing json data

Cheers :smile:

1 Like