I am looking to remove strings and colon symbols prior to an object so that I can search the object for its entities.
For example, I have:
{ "result": [ { "face_id": "b668c61ad349ea928c75ba46338008af", "landmark": { "contour_chin": { "x": 55.448237, "y": 35.152167 }, "contour_left1": { "x": 40.641011, "y": 26.241833 }, "contour_left2": { "x": 40.791324, "y": 27.7615 }
and I would like to have:
{55.448237, 35.15216},{40.641011,26.241833 },{40.791324,27.7615 }
If there's no easy way to remove the strings, can you recommend an easy way to search for the corresponding number. So.. I search for "contour_left2" and get {40.791324,27.7615 } returned.
Thank you.