-
Given this hurl file
that returns
How would I parse for example the value for Is using regex like so the only way?
It seems like a not that uncommon use-case so I'd imagine there would be capturing mechanism for URL-encoded responses. Thanks. edit: I learned that Github can also return the response in JSON if |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @raine indeed in your case the best way to extract a parameter is with a regex. There are also filters to refine captures (like |
Beta Was this translation helpful? Give feedback.
Hi @raine indeed in your case the best way to extract a parameter is with a regex. There are also filters to refine captures (like
split
,urlDecode
etc...) but in this case regex is the way to go.