Help for this page

Select Code to Download


  1. or download this
    # Ugly to me...
    if (my ($this, $that, $some, $other) = $line =~ /(this).*(that).*(some
    +).*(other)/) { 
    ...
      do_it();
    }
    
  2. or download this
    my ( $this, $that, $some, $other, $foo, $bar, $baz ) = ( $1 .. $+ );