in reply to Re: Spreadsheet::ParseExcel format help
in thread Spreadsheet::ParseExcel format help
Simplest answers are the best =] working with CSV values would be good, my problem was the annoying single quotes ' ' and this little code took care of it for me:
#!/usr/bin/perl use strict; use warnings; my $sometext = 'somefile.txt'; open(SOME, $sometext); while(<SOME>) { chomp; $a = $_; $a =~ s/'//g; print $a; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Spreadsheet::ParseExcel format help
by ww (Archbishop) on Jul 17, 2013 at 11:42 UTC |