我试图检查匹配的 facebook url 并在一个正则表达式中获取个人资料:我有:
http://www.facebook.com/profile.php?id=123456789
https://facebook.com/someusername
我需要:
123456789
someusername
使用这个正则表达式:
(?<=(https?://(www.)?facebook.com/(profile.php?id=)?))([^/#?]+)
我得到:
profile.php
someusername
怎么了?