On 30/10/2008, wenqatesh <[EMAIL PROTECTED]> wrote: > > Hi > i just want to extract the max count that occurs in the code shown > below(here it is "7",which varies from time to time).pls suggest a suitable > regular expression to extract the max count > > http://www.nabble.com/file/p20245607/jmeter.jpeg
AFAICS you cannot extract the entry directly. There's no way to select only the last of a series of matches, which is what appears to be needed here. However, you could use an RE which matches all the entries, set the match count to -1, and then use the match count. > Thnx in advance > Venkadesh:-) > > -- > View this message in context: > http://www.nabble.com/Regular-expressions-help-needed-tp20245607p20245607.html > > Sent from the JMeter - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

