in reply to Re: Re: Re: How do I determine if a string contains non ascii characters
in thread How do I determine if a string contains non ascii characters
Or use the negated POSIX (perlish addition) 'character class' directly: if ($string =~ /[[:^ascii:]]//) {
-- Hofmator
|
|---|