Return to Snippet

Revision: 45970
at May 11, 2011 20:49 by cristinachetroi


Initial Code
^[^\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)

Initial URL


Initial Description


Initial Title
Segment keywords by number of words in GA

Initial Tags
google

Initial Language
Regular Expression