in reply to Re: csv to flat-file
in thread csv to flat-file
That's just scary. If you're going to solve things that way then just use something like perl -naF, -e 'INIT{ $, = $/ } print @F'. It's going to be more direct and not make tons of eval STRING calls.
Update: There aren't any quoted commas in the original example - this still works fine for normal comma delimited data anyway. (no quoting/escaping allowed)
__SIG__ use B; printf "You are here %08x\n", unpack "L!", unpack "P4", pack "L!", B::svref_2object(sub{})->OUTSIDE;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: csv to flat-file
by BrowserUk (Patriarch) on Nov 28, 2002 at 18:00 UTC | |
by diotalevi (Canon) on Nov 28, 2002 at 18:28 UTC | |
by BrowserUk (Patriarch) on Nov 28, 2002 at 18:37 UTC |