My subject is
some html codes<h3 class="r"><a href="/url?q=http://www.somedomain.com/args/">Some Title</a></h3>some html codes
My current pattern is:
"/<h3 class="r"><a href="\/url?\?q\=http(...)/"
The result is:
<h3 class="r"><a href="/url?q=http://
I wanted to get the exact url, http://www.somedomain.com/args/
or just <h3 class="r"><a href="/url?q=http://www.somedomain.com/args/">Some Title</a></h3>
so i can parse it to return the url.
but i could not make it.
Any help would be appreciated. Thank you!