Skip to content

Instantly share code, notes, and snippets.

@cristiandouce
Created May 13, 2013 21:04
Show Gist options
  • Save cristiandouce/5571515 to your computer and use it in GitHub Desktop.
Save cristiandouce/5571515 to your computer and use it in GitHub Desktop.
Get twitter usernames from any text with links to twitter profiles.
var regex = /twitter.com\/([a-zA-Z0-9_]{1,15})/gi;
var arr = [];
var text = document.body.innerHTML;
while ( (arr = regex.exec(text)) ) {
console.log(arr);
}
console.log(arr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment