I have got a problematic data from the server as string:
"{word_list: [{word: Small, phones: [{phone: s, quality: 56.33, extent: [77, 84]}, {phone: m, quality: 98.45, extent: [84, 89]}, {phone: ao, quality: 98.45, extent: [89, 102]}, {phone: l, quality: 98.28, extent: [102, 125]}]}]}"
I cannot perform JSON.parse on this data, as there are missing quotation marks on its strings(on the values but i would like to add the quotation marks on the keys as well)
Is there any regex that i could use to cover all of the strings in my data(but only the strings, not the arrays and numbers) so that i could perform the JSON.parse action easily?