in reply to Text file to a 2D array

my @final = map { chomp; [split /,/] } <INFILE>;

-- Randal L. Schwartz, Perl hacker