Skip to content

Instantly share code, notes, and snippets.

@toidang92
Created March 30, 2016 05:27
Show Gist options
  • Save toidang92/7097c331862b16c4bd2458310cf2d25e to your computer and use it in GitHub Desktop.
Save toidang92/7097c331862b16c4bd2458310cf2d25e to your computer and use it in GitHub Desktop.
Sort Keywords by Word Count
^[^\s]*$ matches exactly 1-word keyword
^[^\s]*\s[^\s]*$ matches exactly 2-word keyword
^[^\s]*\s[^\s]* matches keywords of at least 2 words (2 and more)
^([^\s]*\s){2}[^\s]*$ matches exactly 3-word keyword
^([^\s]*\s){4}[^\s]*$ matches 5-words-and-more keywords (longtail)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment