Help for this page

Select Code to Download


  1. or download this
    my $rule = Path::Iterator::Rule->new;
    if ($id =~ /^([0-9A-F]{2})/) {
      my $int = $1;
      $rule->and( sub { m#/INT $int# } );
    }
    
  2. or download this
    my $rule = Path::Iterator::Rule->new;
    if ($id =~ /^([0-9A-F]{2})/) {
      my $int = $1;
      $rule->and( sub { m#/INT (??{ "$int" })# } );
    }