I want to create a regular expression to extract A-ticket from Json ( A value which exists after the A-ticket.I need the value without "". Then I need to pass the key into respective requests in Jmeter.
{"test","test2","A-ticket":"4523963f-6c9a-4d6a-b862-f35db64fc536","amr":["password"]}
I would expect 4523963f-6c9a-4d6a-b862-f35db64fc536 (I don't need A-ticket and "". Only need the value)
This is the regular expression which I created.But this is not working in Jmeter because it doesn't support look behind.
(?<=A-ticket”:“).[^”]*