Skip to content

Instantly share code, notes, and snippets.

@tonglu
Last active August 29, 2015 14:09
Show Gist options
  • Save tonglu/d32ec8800d4487895888 to your computer and use it in GitHub Desktop.
Save tonglu/d32ec8800d4487895888 to your computer and use it in GitHub Desktop.
a|b|c - means contains the strings "a" or "b" or "c"
^(a|b|c)$ - means IS the string 'a' or 'b' or 'c' same as: %in% c('a','b','c')
^(a|b|c) - means begins with 'a' or 'b' or 'c'
(a|b|c)$ - means ends with 'a' or 'b' or 'c'
^[a-zA-Z0-9]*$ - means IS the string contains only a-z, A-Z or 0-9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment