RE: Importing external data into arrays

2004-06-09 Thread Bob Showalter
Roberto Etcheverry wrote: > chomp for @array; # trim "\n" at the end or chomp(@array); or even chomp(my @array = ); -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Importing external data into arrays

2004-06-09 Thread Roberto Etcheverry
PerlDiscuss - Perl Newsgroups and mailing lists wrote: I'm just a beginner to perl and am having some beginner type problems. I need to import a external file containing 15 character ID numbers (one per record) into an single dimensional array within perl. Later this array will be used to interroga

Importing external data into arrays

2004-06-09 Thread PerlDiscuss - Perl Newsgroups and mailing lists
I'm just a beginner to perl and am having some beginner type problems. I need to import a external file containing 15 character ID numbers (one per record) into an single dimensional array within perl. Later this array will be used to interrogate other data within the program. Can someone out the