Json parse error

Hi all,

Hope someone can help:
How to solve this error because of json seeing the " as an end of a value, but it is just some quotes in a name:
input: “Name”: “RAM “No Mercy” (Kick)Bokshandschoenen Mat Zwart - 12oz”

json validator makes it like this and of course it is not valid then and get a parse error:
“Name”: “RAM "
No Mercy " (Kick)Bokshandschoenen Mat Zwart - 12oz”

Thanks

Hi. you can try an regular expression to identify any additional " you want to replace for single quotes. Maybe you can find a rule to do this.


Thanks, Helio!
Wemakefuture
If you have questions reach out :wink:

1 Like

You’ll need to do the search/replace with the Text Parser before you pass the result to the JSON parser or just use the replace() call in the input to the JSON parser.

1 Like