What is a regular expression that accepts only characters ranging from a to z?
^[A-Za-z]+$ To understand how to use it in a function to validate text, see this example