Extracting value from HTML Responce using Regular expression in JMETER?

后端 未结 8 804
长发绾君心
长发绾君心 2020-12-11 21:09

I am getting response from Jmeter like this:

8条回答
  •  伪装坚强ぢ
    2020-12-11 22:06

    The following regular expression will match the parameter and its value:

    \bencounterId=(\d*)
    

    The parentheses enable extraction of the value. Note the word boundary \b which makes sure a parameter ending with encounterId such as fooencounterId is not matched.

提交回复
热议问题