/[a-z]/
a thru z
/[a-zA-Z]/
a thru z and A thru Z
/[^a]/
exclude a
 
/(\w)/
group
/(\w)\1/
reuses (\w)
Comments