Diakoneo has asked for the wisdom of the Perl Monks concerning the following question:
I want to read in a line, put each word into an array, then perform my horrible machinations on the words. I've figured out:
open FILE, "bingo_in.txt"; while (<FILE>) { chomp; foreach (@word = <FILE>) {
but I can't figure out how to break the words of the sentence (line) into an array. I've tried shift, etc. but it always treats the sentence (line) as one big chunk of data.
Thanks for any help with the problem and any tips on how to format my questions (I actually have a couple more.)
|
|---|