in reply to isachar() equivalent?

You can define a character class for the range you want to detect:

my $bins=qr/[\x80-\xff]/; # or whatever m/$bins/ && my_action();

After Compline,
Zaxo