Help for this page

Select Code to Download


  1. or download this
    for my $chr (160 .. 255) {
        my $chr_byte = chr($chr);
    ...
        my $rx = qr{$chr_byte|X}i;
        print $chr . " " . ($chr_utf8 =~ $rx ? "ok" : "not ok") . "\n";
    }
    
  2. or download this
    for my $chr (160 .. 255) {
        my $chr_byte = chr($chr);
    ...
        my $s  =   "uci$chr_utf8";
        print $chr . " " . ($s =~ $rx ? "ok" : "not ok") . "\n";
    }
    
  3. or download this
       ...
       my $rx = qr{uci$chr_byte|uci_};
       ...