I need regex pattern example for PHP with preg_match_all usage how to parse Facebook fan page URL from the HTML code.
Examples:
http://www.facebook.com/pages/SomeTitle/6203451642
http://www.facebook.com/SomeTitle
|
I need regex pattern example for PHP with preg_match_all usage how to parse Facebook fan page URL from the HTML code. Examples:
| |||
|
feedback
|
|
/((?:https?://(?:\w+.)?)?facebook.\w+/[^\s">'};]+)/ The above captures the urls in group 1. That should work for facebook in all regions (top-level domains) and for HTTPS or HTTP or users omitting that altogether and just writing facebook.com/mypage. | |||
|
feedback
|
http://www.facebook.com/SomeTitle"SomeTitle" can be name of the user, unless you query the Graph API you never know that's a page... – Juicy Scripter Jan 10 at 4:03