Help for this page

Select Code to Download


  1. or download this
    $s1 =~ /^\Q$s2\E\z/i
    
  2. or download this
    use Unicode::Normalize qw( NFC );
    
    $s1 = NFC($s1);
    $s2 = NFC($s2);
    $s1 =~ /^\Q$s2\E\z/i