RegEx pattern for anchor tags
Scott Cate just wrote a blog on his first (from scratch) RegEx pattern to find anchor <a> tag. Here is my revision:
<a[\s]?href=["'](?<url>[^"]+[.\s]*)["']>(?<name>[^<]+[.\s]*)</a>
I simply added support for the href value to be enclosed in either single or double quotes.