I am trying to do correlation in Jmeter using regular expression. My scenario is:
GUID=1232, awsdqdwe click1 ,GUID=21232 berttt click2, b, GUID=323223,babsjbcjhbcc click3
Here I wish to catch GUID of click 3 value which is in numerical ignore all the alphabetical texts
Regular expression : GUID=(.*?)(?#text)click3
But this regular expression takes the leftmost GUID . How do I make it look for first GUID from rightmost boundry match?