Help for this page

Select Code to Download


  1. or download this
    while ( <FILE> ) {
       print if ( /^(1|3|4)/ );
    }
    
  2. or download this
    while ( <FILE> ) {
       if ( /^(1|3|4) perlmonks\(([^\)])\)/ ) {
          print "$2\n";
       }
    }