Help for this page

Select Code to Download


  1. or download this
    my @required_chars = qw/p e r l/; # Or anything else...
    LINE:
    ...
      }
      print;
    }
    
  2. or download this
    #!perl -w
    # Warning - silly way of solving problem
    ...
      my $re = "(" . join("|", @res) . ")";
      return qr/$re/;
    }