Help for this page

Select Code to Download


  1. or download this
    my $string = q(one tow three four five six);
    my @words = split(/ /, $string);
    
  2. or download this
    my @words= qw(one tow three four five six);
    
  3. or download this
    $hash1{$words[0]}= { $words[1] => join(' ', @word[2..$#words]) };