I'm currently encountering a pickle in modifications of a document. Lets say for example, I have this chunk of text:
                "id": "EFM",
                "type": "Casual",
                "hasBeenAssigned": false,
                "hasRandomAssigned": false
            },
I currently have roughly 73 - 80 occourances of:
 "id" : "somethingdifferent",
Using a regular expression in notepad++, How can I select the entire string:
 "id" : "",
but only change the contents between the second set of quotes?
Edit
An oversight made me leave this information out:
"equipedOutfit": {
                    "id": "MkIV",
                    "type": "Outfit",
                    "hasBeenAssigned": false,
                    "hasRandonAssigned": false
                },
                "equipedWeapon": {
                    "id": "EFM",
                    "type": "Casual",
                    "hasBeenAssigned": false,
                    "hasRandonAssigned": false
                },
The selected text, looking for is:
 "id" : "EFM",




EFMneeds to be replaced?second set of quotesas only for theequipedWeapon.idand to leaveequipedOutfit.idunchanged or just the value of anyid?