I need a regex to find the last match of a pattern in JMETER This is the string I have
"blah blah n="12" blah blah n="13" blah blah n="14" KEYWORD blah blah"
what I want is the last n=value before the keyword
This is the regex I tried,
n="(.(?!n=).)"KEYWORD
but the regex matches everything between first n= and KEYWORD. It doesn't exclude the n= patterns in between
Can somebody help me crack this nut??