I'm new to rapidjson
, and I have below json
text:
{"Response":"GetAllocations","ResponseCode":200,"ports":[0,1,2],"ports":[3,4,5], "ports":[6,7,8]}
How could I extract the values: 0, 1, 2; 3, 4, 5; 6, 7, 8
by key "ports"
?
Thanks in advance.