Created
March 30, 2016 05:27
-
-
Save toidang92/7097c331862b16c4bd2458310cf2d25e to your computer and use it in GitHub Desktop.
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
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