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
link|improve this question

55% accept rate
You know, in case of 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
feedback

1 Answer

/((?: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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.