Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for an universal regular expression which extracts the twitter username from an url.

Sample URLS

http://www.twitter.com/#!/donttrythis

http://twitter.com/KimKardashian

http://www.twitter.com/#!/KourtneyKardash/following

http://twitter.com/#!/jasonterry31/lists/memberships

Thanks in advance!

share|improve this question

5 Answers

up vote 6 down vote accepted

Try this:

^https?://(www\.)?twitter\.com/(#!/)?(?<name>[^/]+)(/\w+)*$

The sub group "name" will contain the twitter username.
This regex assumes that each URL is on its own line.


To use it in JS, use this:

^https?://(www\.)?twitter\.com/(#!/)?([^/]+)(/\w+)*$

The result is in the sub group $3.

share|improve this answer
In what language is that? JS doesn't support these named groups? – Rudie May 10 '11 at 10:02
It is C#. See update for an example that should work in JS. – Daniel Hilgarth May 10 '11 at 10:07

There are a couple more test cases to make a universal regexp.

  • https URLs are also valid
  • URLs like twitter.com/@username also go to username's profile

This should do the trick in PHP

preg_match("|https?://(www\.)?twitter\.com/(#!/)?@?([^/]*)|", $twitterUrl, $matches);

If preg_match returns 1 (a match) then the result is on $matches[3]

share|improve this answer
Thank you. Its working – Mansoorkhan Cherupuzha May 8 at 4:08

this regex works fine in jquery

$('#inputTwitter').blur(function() {
      var twitterUserName = $(this).val();
      $(this).val(twitterUserName.match(/https?:\/\/(www\.)?twitter\.com\/(#!\/)?@?([^\/]*)/)[3])

});
share|improve this answer

This one works for me (in PHP): /twitter\.com(?:\/\#!)?\/(\w+)/i

share|improve this answer

This regex matches all four given URLs. The user name is present in $1

m[twitter\.com/+(?:#!/+)?(\w+)]

Use this to check

perl -le '$_="<url>"; m[twitter\.com/+(?:#!/+)?(\w+)]; print $1'
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.