Extract values from tab separated response in gatling

Hi,
We get the response in following tab separated format:-

SCENARIO_ID USER_ID
GLOBAL ADMIN
GLOBAL ADMIN
GLOBAL ADMIN
GLOBAL ADMIN
GLOBAL SYSTEM
GLOBAL TEST1
GLOBAL ADMIN
GLOBAL ADMIN
GLOBAL TEST1
GLOBAL ADMIN
GLOBAL ADMIN
GLOBAL TEST1

How can i extract value from this and use in another chained scenario.

Thanks,
Prashant

You could use regex to extract whatever you’re after from the response:

http://gatling.io/docs/current/http/http_check/

Another options is to write some custom code to parse the TSV

Thanks in advance,

Siegfried Goeschl