in reply to Re: Avoiding Strange Win32::ODBC Return Values for Integers
in thread Avoiding Strange Win32::ODBC Return Values for Integers (NUL)
to$worksheet->write($row, $col++, $_, $format) for @data;
It never printed, so it might be a glitch in the "looks like" rules?for (@data) { if ($_ =~ m/^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/){ print; $worksheet->write_number($row, $col++, $_, $format); }else{ $worksheet->write($row, $col++, $_, $format) } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Avoiding Strange Win32::ODBC Return Values for Integers
by LanceDeeply (Chaplain) on Oct 28, 2005 at 16:17 UTC | |
by jonix (Friar) on Oct 28, 2005 at 17:39 UTC |