Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    
    }
    
  2. or download this
    my $regex = "(";
    foreach (@array2) {
      $regex .= $_ . "|";
    }
    $regex .= ")";
    
  3. or download this
    if ($i =~ m/$regex/) {
    
  4. or download this
    #!/usr/bin/perl
    
    ...
    # Do something with $i now.
    
    }