Help for this page

Select Code to Download


  1. or download this
      m[ (?<= ^ .{4} )*? ... ]x
    
  2. or download this
      if ($bindata =~ m[ ^ (?: .{4} )*? \Q$bin\E ]x) {
        print "regex found $n at ", pos( $bindata ) - length( $bin );
      }