On Tuesday 18 September 2001 05:19 pm, you wrote:
> On Tue, 18 Sep 2001, Jeff Newmiller wrote:
> > Anything not matching
> >
> >   [a-z]
> >
> > is devoid of lowercase letters.
>
> remember that it is also devoid of numbers, and other useful things, like
> punctuation :)
>
> You might consider using [a-z] and \W
>
> -Gabe

[a-z]\W
matches anything not starting a lowercase letter.

I want to ethier match anything containg one or more lowercase letters, or 
any string devoid of lowercase letters. Ehthier will work.

Reply via email to