Help for this page

Select Code to Download


  1. or download this
    use Modern::Perl;
    use utf8;
    
    my $string = 'LÉGER';
    print $string =~ /léger/i ? 'matched' : 'no match';