Friday, January 11, 2002, 3:12:19 PM, Scott wrote:
> I am reading a file into a list and then formatting it to prepare it for a
> mainframe. Currently I read the contents into a list as such:
> my @fields = split(/\t/, $record)
> and then I call them by $fields[0], etc.
> Would it be more bene
> On Fri, 11 Jan 2002, Hanson, Robert wrote:
> > Hashes are slower than arrays, but I don't
> > usually worry about those things unless
> > performance is an issue. I recommend (others
> > will no doubt have different opinions) that
> > you use a hash when it makes your life easier...
> > in this
On Fri, 11 Jan 2002, Hanson, Robert wrote:
> Hashes are slower than arrays, but I don't usually worry about those things
> unless performance is an issue. I recommend (others will no doubt have
> different opinions) that you use a hash when it makes your life easier... in
> this case it might not
Hashes are slower than arrays, but I don't usually worry about those things
unless performance is an issue. I recommend (others will no doubt have
different opinions) that you use a hash when it makes your life easier... in
this case it might not, but that is up to you to decide. The only time I