Help for this page

Select Code to Download


  1. or download this
    print "$_" if /\b12345\b|
                   \b12346\b|
    ...
                   \b31338\b|
                   \b54320\b|
                   \b54321\b/x;
    
  2. or download this
    print "$_" if (/\b12345\b/ or
                   /\b12346\b/ or
    ...
                   /\b31338\b/ or
                   /\b54320\b/ or
                   /\b54321\b/);
    
  3. or download this
    my @ports = map { qr/$_/ } ("\b12345\b", "\b12346\b", "\b20034\b",
                                "\b8787\b", "\b31337\b", "\b31338\b",
    ...
            }
        }
    }