1
votes

I have an http post request which replies with a number in the response body. enter image description here

I am trying to use a Regular Expression Extractor to extract this number: enter image description here

I am doing another post request using the extracted value. Unfortunately, the variable seems to be null.

enter image description hereenter image description here

Any idea of what could be wrong?

I am using JMeter 2.13.

1

1 Answers

0
votes

There are 2 available solutions:

  1. Use ${REGION_ID_g0} when referring extracted value
  2. Change your regular expression to add grouping as (\d+)

References: