kevinkhan Posted January 26, 2011 Share Posted January 26, 2011 Im trying to get a regular expression that will take the value where Bandon, Ireland. // Lives in u003ca href="http:\/\/www.facebook.com\/pages\/Bandon-Ireland\/110700692283617\" data-hovercard=\"\/ajax\/hovercard\/page.php?id=110700692283617\">Bandon, Ireland\u003c\/a> preg_match('|Lives in u003ca href="[a-zA-Z0-9_\\/]*" data-hovercard=\"\/ajax\/hovercard\/page.php?[a-zA-Z0-9_=]*\">[a-zA-Z0-9@.=":?<>\\\/ ,-]*\u003c\/a>|', $page, $match); if($match && count($match)>0) { echo "Match Found"; else { echo "No Match Found"; } } for some reason my above regEx wont work Link to comment https://forums.phpfreaks.com/topic/225726-regular-expression-question/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.