Few things:
1. You don't need to escape the quotes
2. In your original regex, you aren't storing the digits within the variable
- they need to be enclosed with paren ()
([0-9]{1,6})
3. I don't believe PERL supports {1,6} the way you are using it. The regex
fails in RegexBuddy.
4. This will work without being overly greedy: (\d+?)
4a. \d is for any digit
4b. +? repeats the previous match as few times as possible
4c. the () store whatever is contained to the variable as defined in jmeter
--
View this message in context:
http://jmeter.512774.n5.nabble.com/regular-expression-extractor-long-page-tp3237090p3237253.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]