in reply to Re: Re: Re: Text::Format Wrapping
in thread Text::Format Wrapping

Cheers Hofmator! I had no idea it was enclosed in the Perl core.

For my self-education, is there a way to discover if a particular module is included in the core? Sort of like a database "query" on an core module?

Funny how the answer was right under my nose. Apparently, the answer wasn't evident to a tech who helped me...:

<snippet from techie e-mail>

If you are using ActivePerl build 633 or better, you should be able to install this module using PPM3. <end snippet>

Thanks again all!

Replies are listed 'Best First'.
Re5: Text::Format Wrapping
by Hofmator (Curate) on Mar 07, 2003 at 12:03 UTC
    is there a way to discover if a particular module is included in the core?
    Have a look at perldoc perltoc under 'PRAGMA DOCUMENTATION' and 'MODULE DOCUMENTATION'. Online you can find it here for perl 5.8.0 and perl 5.6.x.

    For additionally installed modules you can try perldoc perllocal. And to simply see if a module is installed use perl -MModule::Name -e1.

    And as a side note ... you can edit most of your posts here on the monastery (apart from certain root nodes), so there's seldom a need for a repost.

    -- Hofmator