What is a regular expression that accepts only characters ranging from a to z?
Just for people using bash shell, instead of "+" use "*"
"^[a-zA-Z]*$"