Help for this page

Select Code to Download


  1. or download this
    foreach (@data)
    {
    ...
      print "\t";
    }
    print "\b"; # backspace over the last tab
    
  2. or download this
    my $string;
    foreach( @data ){
    ...
    }
    chop( $string ); # not chomp, but chop.
    print $string;