in reply to Accessing multiple Arrays and

What do you mean by "nothing is returned"? Do you get a print out saying "Ref Table = something"? A Data::Dump of @tfl_list and @tfl_file would make this problem easier to solve - right now, I'm not sure exactly what those data structures look like, so it's hard to tell what's going on.

Replies are listed 'Best First'.
Re^2: Accessing multiple Arrays and
by rheaton (Acolyte) on Dec 28, 2006 at 18:04 UTC
    Empty String seems to be returned. When I print it nothing appears so I assume it to be empty string.
      print "  Ref Table = $tfl_line->[9]"; should be print "  Ref Table = ".$tfl_line->[9];
        I found out what the issue was after using the Dumper and am going to start a new thread as the problem is not accessing the Array it is apparently building it.