I have a string like this:
{ "\\"name\\" => \\"{ 'a', 'b', 'c' }\\"**,** \\"age\\" => \\"{6, 7, 8 }\\" " }
It's a hstore, and for example 'a' can be a hstore to. I want to parse this string by comma in C. when parsed the output must be like that
array(
array('name' => {'a','b','c'}, 'age' => {6, 7, 8 }) ,
array( ),
array( )...
)