Skip to content

Instantly share code, notes, and snippets.

@yelvert
Created April 22, 2012 00:57
Show Gist options
  • Save yelvert/2440603 to your computer and use it in GitHub Desktop.
Save yelvert/2440603 to your computer and use it in GitHub Desktop.
tweet = "What a great night, awesome drinks. :-)"
emoticon_list = ['\:\)', '\:\-\)']
emoticon_regex = Regexp.new("(#{emoticon_list.join('|')})")
tweet.gsub!(emoticon_regex, ' \1 ')
tokens = tweet.split
tokens.compact!
tokens.each do |token|
puts token
is_emoticon = !!(token =~ emoticon_regex)
puts is_emoticon
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment