- or download this
csc,tech,base
csc,comp,acm
...
new,this,that
other,some,sing
other,some,sels
- or download this
use SuperSplit;
use HTML::Table;
$data = supersplit_open( ',', 'table.txt');
- or download this
@firstcol = map { $$_[0] } @$data;
@numbers = (1) x scalar(@firstcol); # init to (1,1,1,...)
...
$numbers[$i] = 0;
}
}
- or download this
$table = new HTML::Table;
$table -> setBorder(2);
...
$table->addRow( @$row );
}
# $table->print;
- or download this
foreach $rowno (0..$#firstcol) {
if ($numbers[$rowno]) {
...
}
$table->print;