Reputation: 61
I'm trying to extract a number from string
in single quotes.
For example: '0000123' in JMeter. This string
comes from a CSV file configured in CSV data config.
Upvotes: 1
Views: 4773
Reputation: 168157
Relevant regular expression extractor configuration will look like:
JMeter Variable
. Provide variable name which holds that 0000123 value. (\d+)
$1$
See image below for configuration applied example and Using RegEx (Regular Expression Extractor) with JMeter guide for more information on the domain.
Upvotes: 3