I am new to regular expression and not able to find the solution of my problem. I have one JSON which my service is returning in response
"{\"Version\":14,\"Collections\":[{\"Id\":\"**************\",{\"Id\":\"**************\"\ "Solutions\":[{\"Id\":\"**************\"",{\"Id\":\"**************\" which consists of multiple collections and multiple solutions having multiple ids in both and I want to extract the all id's related to collections only not solution id and when want to extract the solutions id's only not collection id's.
I am using ----- "Id.":."(.+?).",."--- but it is giving both id's i.e. collections and solutions.