From: Adam Akhtar [mailto:adamtemporary / gmail.com] 
# isnt there a shorthand version for just letters or do you 
# have to always write out  [a-zA-Z]???

try

   /[a-z]/i

or

  /[[:alpha:]]/



kind regards -botp