in reply to Re: international case insensitive searched with Perl
in thread international case insensitive searched with Perl

In fact it works with 5.10 just using:

use strict; use warnings; use utf8; my $string = 'LÉGER'; print $string =~ /léger/i ? 'matched' : 'no match';

Prints:

matched
True laziness is hard work