Reputation: 810
this works, but how can I ignore the quotation marks in the form of my token "token"
i don't want him to get the quotation marks
Upvotes: 0
Views: 37
Reputation: 168122
You need to provide the Template and specify the capturing group (in your case it will be 1
)
More information:
Upvotes: 1
Reputation: 58822
I would use Boundary Extractor
Put Left and Right Boundary as "
and you will get the value
Allows the user to extract values from a server response using left and right boundaries. As a post-processor, this element will execute after each Sample request in its scope, testing the boundaries, extracting the requested values, generate the template string, and store the result into the given variable name
Upvotes: 1