Help for this page

Select Code to Download


  1. or download this
    my $string = "This is that is other is";
    my %hash;
    ...
           = $string =~ m/(This).+(that).+(other).+/ ) {
        print "$_ = $hash{$_}\n" foreach keys %hash;
    }
    
  2. or download this
    @{$x}{'a', 'b', 'c'} = ( list );