problem with extracting a value with regular expression

50 Views Asked by At

I have a problem with extracting a value in a response in html with jmeter, I should extract the value with a regular expression, the value to extract is the following: nonce% 3DEMd70h7_AQzsXKQFANYigilzxkRnJCW_hW8O_7sVI9 i should extract everything except nonce% 3D how to do? thank you in advance

1

There are 1 best solutions below

0
On

It's quite hard to come up with a proper regular expression without seeing the full response, it could be something like

nonce% 3D(\w+)

enter image description here

where:

  • \w stands for "word" (alpha-numeric, case insensitive, including underscores)
  • + stands for "repetition"

If you have problems with coming up with a proper regular expression you might find Boundary Extractor easier to use, it just fetches everything between left and right boundaries

enter image description here