Hi Everybody,
I am having problem with regular expression. The below given code is
actually is a part of table and repeated mannier times with unique id
(yellow marked):
<td> 11220</td>
<td> rgupta/10.4.30.245</td>
<td> Integration Framework Job</td>
<td> Export - RFX - </td>
<td> 07-12-17 05:44:37.652</td>
<td> NormalWithresults</td>
<td> 07-12-17 05:44:38.375</td>
<td> 07-12-17 05:45:17.372 [38 secs ] </td>
<td> 1</td>
the regex that i am using is:
${job_id}</td>(\n.*)(.*[\n\r]){7}.*<td> .*\[(\d*)? secs
where "job_id" is the id i am capturing from other regular expression. The
value passed to this expression is correct as I have checked by passing it
to some sampler. Can you please let me know where I am wrong in the reg
expression?