How to convert strings that look like JSON to JSON objects

Hello @Paul_Murray,
Try this
{{replace(Your JSON string with that \n and \t or directly add variable; "/(\\n|\\t)/g"; emptystring)}}

Your JSON string contains \n and \t, so it must be removed before giving it to ParseJSON. Use replace the function with a regular expression and remove extra \n and \t from your string.


:bulb:P.S.: Always search first, Check Make Academy. If this is helpful, mark it as a solution :white_check_mark: and :+1:
Need expert help or have questions? Contact or comment below! :point_down:

1 Like