Help for this page

Select Code to Download


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