Hi,
I am hoping there is a simple solution to my problem.
I have the following string of JSON text which has been “:formatted as JSON-safe” evident by the inclusion of the \n and \ throughout.
"{\n “Title”: “The Journey of Four Wheels”,\n “Overview”: “A captivating animation that takes the audience through the evolution of cars, their impact on society, and a glimpse into the future of transportation.”
What I want to achieve is a process of removing the extra characters to restore the JSON to the following
{
“Title”: “The Journey of Four Wheels”,
“Overview”: “A captivating animation that takes the audience through the evolution of cars, their impact on society, and a glimpse into the future of transportation.”
}
Is this possible via a plugin or some other method?
Thanks in advance