in reply to (jptxs) Re: Creating Excel Spreadsheet from text data filein thread Creating Excel Spreadsheet from text data file
$a = 0; print $a++; # 0 print $a; # 1 print ++$a; # 2 print $a; # 2 [download]