Help for this page

Select Code to Download


  1. or download this
    if($1 => 1 and $1 <= 75 and /\d{1}-\d{2}/) { ... }
    
  2. or download this
    if ($_ =~ /\something(\d*)somethingelse/i){ 
        if($1 => 1 and $1 <= 75) { ... }
    }