I am trying to make a regex in Python which catches an url in a :
<a href tag
For example, if i take this :
<a href="http://www.simplyrecipes.com/recipes/broccoli_slaw_with_cranbery_orange_dressing/" n title="Permalink to Broccoli Slaw with Cranberry Orange Dressing" rel="bookmark"><img width="520" height="347"
I need this expression to be catched:
<a href="http://www.simplyrecipes.com/recipes/broccoli_slaw_with_cranbery_orange_dressing/"
So this is what i have done :
^<a href="http://www(???what to put in here????)"$
But i don't know how to traduct the part of the expression after www which must be included but not specially treated.
Thanks in advance for any enlightenment!