Help for this page

Select Code to Download


  1. or download this
    $index =~ m"(.*?): (.*)";
    
    my $key = $1;
    my $val = $2;
    
  2. or download this
    my $key='';
    my $value='';
    ...
        $key = $1;
        $val = $2;
    }
    
  3. or download this
    'boo!' =~ /(.*)/;
    
    ...
    my $last_word=$1;
    
    print "$last_word\n";