http://www.perlmonks.org?node_id=944735


in reply to Re: lightweight CSV parser
in thread lightweight CSV parser

That appears to be a filehandle reference, not a regular string. I actually tried initially to use YAML strings, and with YAML::Syck was able to get a prototype working by opening a string reference as a filehandle, then loaded with YAML::Syck::LoadFile($fh) . That was the only YAML parser that worked like that, and when I tried the same thing within Movable Type, it wouldn't read the filehandle. "No such file or directory -type errors. So I gave up.

It looked simple, but I'm missing some key concept.

Maybe parsing CSV is easier. I'll give it a try.

Replies are listed 'Best First'.
Re^3: lightweight CSV parser
by Anonymous Monk on Dec 22, 2011 at 08:44 UTC

    That appears to be a filehandle reference, not a regular string ...

    Well, if you insist http://search.cpan.org/perldoc/Text::CSV#SYNOPSIS only works with files, that is how you treat a regular string ($stringOfCsv), as a filehandle