in reply to Help with Creating a Table from array ref I parsed in
#! /usr/bin/perl use warnings; use strict; use Text::Table; my $t = 'Text::Table'->new; while (<DATA>) { my @cols = split; $t->add(("") x (3 == @cols), @cols); } print $t; [download]