Help for this page

Select Code to Download


  1. or download this
    while (@data = <DATA>) {
        ...
    }
    
  2. or download this
    for($i=0;$i<$#data;$i++){
    
  3. or download this
    for my $line (@data) {
    
  4. or download this
    my @tokens;
    while (<DATA>) {
    ...
        }
    }
    print join( ',',@tokens),"\n", @tokens = () if @tokens;