Hi,
I'm trying to extract a 'token=' value from an http response using
regular expression extractor. The idea, of course, is to supply the
value as post param in subsequent requests:
((?<=token=)[^\n^ ]*)
will return token value (without 'token='); i.e. when above is applied to:
token=1431535/+sfafa
it will return '1431535/+sfafa'
I tested the above expression in NetBeans and it works; however it does
not work within "reg exp extractor" post-processor. However this
expression (which, unfortunately also includes 'token=') does work:
token=[^\n^ ]*
Does that mean lookback is not supported? If so, how can I extract value
to the right of 'token=' and pass it on to subsequent requests?
thanks,
-nikita
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]