Regular Expressions 101

Community Patterns

Facebook profile ID

0

Regular Expression
PCRE (PHP <7.3)

/
^(?:https?:\/\/)?(?:www\.|m\.|touch\.)?(?:facebook\.com|fb(?:\.me|\.com))\/(?!$)(?:(?:\w)*#!\/)?(?:pages\/)?(?:photo\.php\?fbid=)?(?:[\w\-]*\/)*?(?:\/)?(?:profile\.php\?id=)?([^\/?\s]*)(?:\/|&|\?)?.*$
/
gm

Description

Isolate Profile ID from Facebook URL

Still requires:

  • Cutting of remainder of URL from first occurrence of '&'
Submitted by anonymous - 5 years ago