RapidJson convert string to JSON

Hi,

I have a JSON string, in which value is actually a string, but I need to access it like JSON array. {"data" : "[A, B, C]"}. Is there any way to parse VALUE as Indexed array using RapidJSON so that I get a document like: {"0" : "A", "1" : "B", "2" : "C"}

Thanks

Anyone having similar requirement, please checkout following link. Its not possible to get desired result using RapidJSON due to RFC compliance, but a manual parser can be used as in accepted answer.