Created
September 29, 2011 19:39
-
-
Save mookid8000/1251717 to your computer and use it in GitHub Desktop.
.NET regexes to extract tags and mentions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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