Skip to content

Instantly share code, notes, and snippets.

@mookid8000
Created September 29, 2011 19:39
Show Gist options
  • Save mookid8000/1251717 to your computer and use it in GitHub Desktop.
Save mookid8000/1251717 to your computer and use it in GitHub Desktop.
.NET regexes to extract tags and mentions
static readonly Regex TagsRegex = new Regex(@"(?:(?<=\s)|^)#(\w*[A-Za-z_]+\w*)");
static readonly Regex MentionsRegex = new Regex(@"(?:(?<=\s)|^)\@(\w*[A-Za-z_]+\w*)");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment