Trying to find the links on a page.
my regex is:
/]*href=(\\\"\\\'??)([^\\\"\\\' >]*?)[^>]*>(.*)<\\/a>/
Using your regex, I modified it a bit to suit your need.
(.*)<\/a>
I personally suggest you use a HTML Parser
EDIT: Tested