I have a pregmatch with the following search :
$regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>";
now how can I reformat this to look for something like :
href="http://plus
I dont want the entire thing to be changed , just that part for the href.
Thanks

//a[starts-with(@href,'http://plus')]– Marc B Sep 23 '11 at 16:22