in reply to Re: Uploading Text::CSV
in thread Uploading Text::CSV

Thanks, so as a follow-up question: are there any perl-only modules that do roughly the same thing as Text::CSV?

Replies are listed 'Best First'.
Re: Re: Re: Uploading Text::CSV
by tilly (Archbishop) on Jun 26, 2003 at 07:28 UTC
Re: Re: Re: Uploading Text::CSV
by edoc (Chaplain) on Jun 26, 2003 at 10:22 UTC

    I modified Text::CSV and it appears to work ok.. just comment out the Exporter/AutoLoader stuff.. I don't believe it actually uses any of it..

    #BEGIN { # use Exporter (); # use AutoLoader qw(AUTOLOAD); use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); $VERSION = '0.01'; # @ISA = qw(Exporter AutoLoader); # @EXPORT = qw(); # @EXPORT_OK = qw(); # %EXPORT_TAGS = qw(); #}

    Update: ok, so it does use it, but it doesn't need it.. see here for a slightly more informed solution/explanation..

    cheers,

    J

      Thanks, I did as BrowserUk suggested in the post you link to, it works great.

      Thanks for the help :)