Help for this page

Select Code to Download


  1. or download this
    $ perl -le '
        use List::Util "first";
    ...
          sub { print 1; 1 },
          sub { print 2; 1 };
    '
    
  2. or download this
    my $regex = join '|', map quotemeta, @strings;
    $regex = qr/^($regex)$/;
    
  3. or download this
    $string = $1 if $map =~ $regex;