Possible Duplicate:
RegEx match open tags except XHTML self-contained tags
Grabbing the href attribute of an A element
I'm trying to scrape a URL from the following string...
<a class="uf" href="--"><b>Massage</b> Sacramento. Mae's Acupressure</a>
Here's the regex I've got now...
<a class="uf" href="(.*?)">.*?<\/a>
However, it's not getting any results when scraping the page.
What am I doing wrong here?
I'm doing this in PHP, by the way.