Subject: Re: confused by this simple regular expressions behaviour
From: Pea, Botp <botp delmonte-phil.com>
Date: Thu, 21 Aug 2008 18:21:10 +0900
References: 312127312130312135
In-reply-to: 312135
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