Help for this page

Select Code to Download


  1. or download this
    my $sentence = 'This is a test';
    my %hash = map { $_, 1 } ($sentence =~ /\w+/g);
    
  2. or download this
    my $sentence = 'This is a test';
    my %hash;
    for ($sentence =~ /\w+/g) {
        $hash{ $_ }++;
    }