Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    $search = "\x8C\x95";
    ...
    print "Second attempt -- anchoring\n";
    print " Matched Text1\n" if $text1 =~ /^ (?:$encoding)*? $search/osx;
    print " Matched Text2\n" if $text2 =~ /^ (?:$encoding)*? $search/osx;
    
  2. or download this
    print " Matched Text1\n" if $text1 =~ /^ (?:$encoding)*? $search/osx;