Trying to find the links on a page.
my regex is:
/]*href=(\\\"\\\'??)([^\\\"\\\' >]*?)[^>]*>(.*)<\\/a>/
The pattern you want to look for would be the link anchor pattern, like (something):
$regex_pattern = "/(.*)<\/a>/";