Expression: (?<="FacilityId":")[dw-]+(?=",)
I also tried: (?<="FacilityId":")((^"]*)(?=")
Input: {"FacilityId":1,"PatientId":2323,"FirstName":"TEST"
Result: No matches
I'm trying to parse some returned JSON but I'm having a hard time doing so. I need an expression that will return the value of 1 from FacilityId, or value 2323 from PatientId.
I looked at some other posts in the Nintex forums and thought I was getting somewhere but I can't seem to get it 100%. Can someone help me clear this up?