in reply to Re^2: using hash to find frequency count
in thread using hash to find frequency count
towhile(<>){ my @list = shift =~ /([a-xA-Z'\-]+)/g;
gave me results now; could you explain a little what the match is doing to parse the lines?while(<>){ my @list = $_ =~ /([a-xA-Z'\-]+)/g;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: using hash to find frequency count
by jjohhn (Scribe) on May 15, 2005 at 04:23 UTC | |
|
Re^4: using hash to find frequency count
by ikegami (Patriarch) on May 15, 2005 at 13:44 UTC |