I have the following string:
<http://test.host/users?param1=1¶m=1>; rel=\"rel_value\"
And I would like to get the URL and the rel value. That is:
http://test.host/users?param1=1¶m=1
and
rel_value
I know how to get the URL:
string[/<.*?>/]
But failing to see how to get the rel. Any ideas on a regex that I could get both?