Help for this page

Select Code to Download


  1. or download this
    $str = "a\xFFabb";
    $str = "aa\xFFbb";
    $str = "aabb\xFF";
    
  2. or download this
    if ($str =~ "aabb") {
      print "match found\n";
    ...
    else {
      print "no match\n";
    }