in reply to Re: Re: Re: Re: hard referencing in hashes?!?
in thread hard referencing in hashes?!?
So I'd probably do this:
The map produces a list of all the "words" in the file; the grep filters out any that don't begin with a letter. If you need to remove punctuation and stuff like that (if you said you did, I missed that), then you could modify the split accordingly: map { split /\W+/ } hth,my @words = grep { /^[a-z]/i } map { split } <FILE>;
jdporter
...porque es dificil estar guapo y blanco.
|
|---|