Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given the following Facebook profile and page URLs, my intent is to extract profile ids or usernames into the first match position.

http://www.facebook.com/profile.php?id=123456789
http://www.facebook.com/someusername
www.facebook.com/pages/Regular-Expressions/207279373093

The regex I have so far looks like this

(?:http:\/\/)?(?:www.)?facebook.com\/(?:(?:\w)*#!\/)?(?:pages\/)?(?:[?\w\-]*\/)?(?:profile.php\?id=(\d.*))?([\w\-]*)?

Which produces the following results:

Result 1
1. 123456789

Result 2
1.
2. someusername

Result 3
1.
2. 207279373093

The ideal outcome would look like:

Result 1
1. 123456789

Result 2
1. someusername

Result 3
1. 207279373093

That is to say, I'd like to have the profile identifier to always be returned in the first position.

It would also be ideal of www.facebook.com/ and facebook.com/ didn't match either.

share|improve this question
This smells like a facebook scraping script. – Brad Christie Mar 5 '11 at 23:55
@Brad does everything with the word facebook in it smeel like that to you ? i think not enough info to determine what the script using this would be doing – n00b Mar 6 '11 at 0:11
2  
@Brad It's not, but why should you care if it is or if it isn't? – Josh Deeden Mar 6 '11 at 0:49
@noob32: Nope, just typically url parsing with a full API avail. (reminds me of the mass "Add as a friend" scripts that were on myspace, TBH) -- @JoshDeeden: Why should I care? Given the 6 degree rule, you could grab a lot of names off facebook just going through friend lists. Not that brute forcing the 6 billion numeric id's wouldn't get you somewhere as well, but I just don't see a reason you'd need to parse a url (not that there isn't a fully-legitimate use for it). Almost everything you'd need is in the API. – Brad Christie Mar 6 '11 at 2:31
parsing the url is much simpler than using the API... – n00b Mar 6 '11 at 2:48

3 Answers

up vote 4 down vote accepted

I'd recommend Rad Software Regular Expression Designer.

(?:(?:http|https):\/\/)?(?:www.)?facebook.com\/(?:(?:\w)*#!\/)?(?:pages\/)?(?:[?\w\-]*\/)?(?:profile.php\?id=(?=\d.*))?([\w\-]*)?
share|improve this answer
Thanks for the suggestion on the software, but I'm on a Mac and all I saw were Windows screenshots on their website. – Josh Deeden Mar 6 '11 at 0:51
Sorry if I wasn't clear on what I was going for. I updated the question to better reflect the desired behavior (I think) – Josh Deeden Mar 6 '11 at 0:54
i edited my answer, it should work now. i recommend reading more on group lookahead/behinds – n00b Mar 6 '11 at 1:01
Awesome. Thanks a ton. That almost works. The matches are retured in the right position, but facebook.com/ still matches. That's my fault. In my original post, I stated that facebook.com shouldn't match (and it doesn't), but failed to mention that facebook.com/ shouldn't match either. Ideally matches would only be returned when a complete profile URL is given... – Josh Deeden Mar 6 '11 at 1:21
Seems the regex does not recognize urls like facebook.com/test.username . Any ideas? – SteMa Dec 2 '11 at 18:16
show 2 more comments

I made a gist a while back that works fine against the given examples:

# Matches patterns such as:
#    http://www.facebook.com/my_page_id => my_page_id
#    http://www.facebook.com/#!/my_page_id => my_page_id
#    http://www.facebook.com/pages/Paris-France/Vanity-Url/123456?v=app_555 => 45678
#    http://www.facebook.com/pages/Vanity-Url/45678 => 45678
#    http://www.facebook.com/#!/page_with_1_number => page_with_1_number
#    http://www.facebook.com/bounce_page#!/pages/Vanity-Url/45678 => 45678
#    http://www.facebook.com/bounce_page#!/my_page_id?v=app_166292090072334 => my_page_id

/(?:http:\/\/)?(?:www\.)?facebook\.com\/(?:(?:\w)*#!\/)?(?:pages\/)?(?:[\w\-]*\/)*([\w\-]*)/

To get the latest version: https://gist.github.com/733592

share|improve this answer

In the first answer is something that wonders me a little bit. Anyway the code should work.

(?:www.)

shouldn't that be

(?:www\.)

since the literal '.' (dot) is searched, not 'any character'

Just for the case that my code is usefull for anyone. (My goal is little different than Josh's. I want to use the 'name' part of the URL as slug for my app.)

Out of a rails app:

    @graph = Koala::Facebook::GraphAPI.new
@fb_page = @graph.get_object(get_fb_env['page']['id'])
if @fb_page['link'] =~ /(?:http:\/\/)?(?:www\.)?facebook.com\/(?:(?:\w)*#!\/)?(?:pages\/)?([?\w\-]*)(?:\/)(\d.*)?/i
  slug = $1
  page_id = $2 # which in my case is available in @fb_page['id'] as well
end
@test = "#{@fb_page['id']}, slug: #{slug}"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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