http://qs321.pair.com?node_id=125164


in reply to Re: Re: Simple Regex for Alpha string
in thread Simple Regex for Alpha string

For handling non-ASCII characters you can do a use locale; (see perllocale) and use the POSIX character class "upper": /^[[:upper:]]{2}$/

Replies are listed 'Best First'.
Re: Re: Re: Re: Simple Regex for Alpha string
by demerphq (Chancellor) on Nov 14, 2001 at 03:31 UTC
    I was going to say the same thing about using a POSIX class, but aside from the perllocale issue. I think generally its better to use them when you can.

    Yves / DeMerphq
    --
    Have you registered your Name Space?