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
Thanks in advance!
|
I'm looking for an universal regular expression which extracts the twitter username from an url. Sample URLS
Thanks in advance! |
|||
|
|
|
Try this:
The sub group "name" will contain the twitter username. To use it in JS, use this:
The result is in the sub group $3. |
|||||
|
|
|
There are a couple more test cases to make a universal regexp.
This should do the trick in PHP
If |
||||
|
|
|
this regex works fine in jquery
|
|||
|
|
|
This regex matches all four given URLs. The user name is present in $1
Use this to check
|
||||
|
|