If you think that you might want to use hierarchical data,
or if you want to add lots of features to the program in
the future, I would second the recommendation for XML.
If you to start with something even more simple, I recommend
Data::Table,
which has a really simple interface, works with CSV
files and databases,
supports sorting,
math operations on a column, HTML rendering,
etc.
Here's a snippet to get you going:
use strict;
use Data::Table;
my $t= Data::Table::fromCSV("phonebook.csv");
$t->sort('lastname', 1, 0); # Sort by col 'lastname', alphabetic, as
+cending
print $t->html; # Print out phone book as an HTML table.
Where the file 'phonebook.csv' contains:
lastname,firstname,phone,TZ,date_entered
Wall,Larry,555-1212,PST,4/3/2001
Schwartz,Randal,555-1212,PST,4/1/2001
It emits HTML for this table:
| lastname | firstname | phone | TZ | date_entered |
| Schwartz | Randal | 555-1212 | PST | 4/1/2001 |
| Wall | Larry | 555-1212 | PST | 4/3/2001 |
I think you have chosen a very nice project for learning perl.
It should work perfectly the first time! - toma
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.