I'm using the regex in Jmeter 2.8 to extract some values from JSON responses.
The response is like that:
{
"key": "prod",
"id": "p2301d",
"objects": [{
"id": "102955",
"key": "member",
...
}],
"features":"product_features"
}
I'm trying to get everything except the text between [{....}]
with one regex.
I've tried this one "key":([^\[\{.*\}\],].+?)
but I'm always getting the other values between [{...}]
(in this example: member)
Do you have any clue?
Thanks.