I'm trying to find all the hash tags in a string. The hashtags are from a stream like twitter, they could be anywhere in the text like:

this is a #awesome event, lets use the tag #fun

I'm using the .NET framework (c#), I was thinking this would be a suitable regex pattern to use:

#\w+

Is this the best regex for this purpose?

link|improve this question
feedback

7 Answers

up vote 4 down vote accepted

It depends on whether you want to match hashtags inside other strings ("Some#Word") or things that probably aren't hashtags ("We're #1"). The regex you gave #\w+ will match in both these cases. If you slightly modify your regex to \b#\w\w+, you can eliminate these cases and only match hashtags of length greater than 1 on word boundaries.

link|improve this answer
Thanks for that, I was a little worried the edge cases would cause me some grief. – user189528 Oct 14 '09 at 1:52
1  
Another note, this regex won't match "#tags-with-hyphens", so keep that in mind... – bobbymcr Oct 14 '09 at 2:52
Maybe \b[^ .,)\]}] would be a better choice. But that still requires a word character (letter/number, iirc) at the beginning for \b to work. I have absolutely no clue how "hashtags" are used on Twitter, though. Might be that I'm gravely mistaken here and that they regularly include punctuation except hyphens. – Joey Oct 14 '09 at 5:18
3  
\b# will only match if the # is immediately preceded by a word character. If anything, you want the opposite: \B# (\B == "a position that is not a word boundary"). – Alan Moore Jan 24 '10 at 1:43
feedback

If you are pulling statuses containing hashtags from Twitter, you no longer need to find them yourself. You can now specify the include_entities parameter to have Twitter automatically call out mentions, links, and hashtags.

For example, take the following call to statuses/show:

http://api.twitter.com/1/statuses/show/60183527282577408.json?include_entities=true

In the resultant JSON, notice the entities object.

"entities":{"urls":[{"expanded_url":null,"indices":[68,88],"url":"http:\/\/bit.ly\/gWZmaJ"}],"user_mentions":[],"hashtags":[{"text":"wordpress","indices":[89,99]}]}

You can use the above to locate the specific entities in the tweet (which occur between the string positions denoted by the indices property) and transform them appropriately.

If you just need the regular expression to locate the hashtags, Twitter provides these in an open source library.

Hashtag Match Pattern

(^|[^0-9A-Z&/]+)(#|\uFF03)([0-9A-Z_]*[A-Z_]+[a-z0-9_\\u00c0-\\u00d6\\u00d8-\\u00f6\\u00f8-\\u00ff]*)

The above pattern can be pieced together from this java file. Validation tests for this pattern are located in this file around line 115.

link|improve this answer
feedback

After looking at the previous answers here and making some test tweets to see what Twitter liked, I think I've come up with a solid regular expression that should do the trick. It requires lookaround functionality in the regular expression engine, so it might not work with all engines out there. It should still work fine for .NET and PCRE.

(?:(?<=\s)|^)#(\w*[A-Za-z_]+\w*)

According to RegexBuddy, this does the following: RegexBuddy Create View

And again, according to RegexBuddy, here is what it matches: RegexBuddy Test View

Anything highlighted is part of the match. The darker highlighted part indicates what is returned from the capture.

link|improve this answer
This is a much better solution to the problem given. – Tim Meers Mar 31 '11 at 19:25
tried a few on the page, this one seemed to work best – Tim Dec 29 '11 at 16:25
feedback

I tweeted a string with randomly placed hash tags, saw what Twitter did with it, and then tried to match it with a regular expression. Here's what I got:

\B#\w*[a-zA-Z]+\w*

#face *#Fa!ce something #iam#1 #1 #919 #jifdosaj somethin#idfsjoa 9#9#98 9#9f9j#9jlasdjl #jklfdsajl34 #34239 #jkf *#a *#1j3rj3

link|improve this answer
feedback

this is the one i wrote it looks for word boundaries and only matches hash text (?<=#)\w*?(?=\W).

link|improve this answer
feedback

I've tested some tweets, and realized that hashtags:

  • Are composed by alphanumeric characters plus underscore.
  • Must have at least 1 letter or underscore.
  • May have the dot character, but the hashtag will be interpreted as a link to an external site. (I do not consider this)

So, that's what I've got:

\B#(\w*[A-Za-z_]+\w*)
link|improve this answer
2  
That will match "&#foobar" which Twitter doesn't consider to be a hashtag. – Kevin Mark Mar 20 '11 at 7:59
feedback

It looks like Twitter's Ruby Source code for doing this is up on GitHub.

https://github.com/twitter/twitter-text-rb/tree/master/lib

link|improve this answer
feedback

Your Answer

 
or
required, but never shown