use Data::Table; # Create a table object from a CSV file my $table = Data::Table::fromCSV("data.txt"); # Sort by last name, then by first name $table->sort('lastname', 0, 0, 'firstname', 0, 0); # Print it as an HTML table, for example print $table->html;