I have to extract 5 different dynamic values in Jmeter,four are always numbers while the other one is alpha-numerical as shown below with no boundaries (the response is as as shown)
Incharge 1 DL0413 1 6 1 1
I used \t[0-9]\t[0-9]\t[0-9]\t[0-9] & Template as $0$ as a regular expression (in Regular Expression Extractor) to extract the four numbers, this highlights the numbers in the View Results tree when checked but I am unable to pass these in the following request.It passes all 4 numbers as one - 1611
Also used DL[0-9][0-9][0-9][0-9] to get the first alphanumeric data which has worked for me. But I was looking for more robust extractor which could work for all the values

