Is there a tutorial where I can learn how to use the Cpan modules

Take a look to the module section in the Tutorials. If perl is a new land to you, try first to build a solid basis, so read also the basic tutorials first.

Using a module implies

1-Download and install the module in your system, i.e with

cpan install a::module::name

The core and Very Important Modules are available directly with your perl installation, no need to download or install this

2-Put a line like this in your script:

use a::module::name;

Now you can call the functions provided by this module in your script with something like:

my $var = &function( "required function args here" );

Really, how to use the funcion ranges between very easy and really esoteric. All modules in cpan have your own documentation and examples (generally in the same page as the download link), but its true that some are poorly documented and you will need to guess how to fill the gaps.


In reply to Re^3: SPLITTING WORDS INTO SYLLABLES by pvaldes
in thread SPLITTING WORDS INTO SYLLABLES by gimley

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.