A well thought out book that is very useful to have. I would rank it up there with Perl In a Nutshell.
Takes you through almost everything and it uses code
that is easy to follow and implement. Very understandable.
Each sample is written in a clear format. First the script, then the output and then an explaination of the script. There
are 13 chapters that cover Variables, Operators, Regex, Conditionals,
FileHandles, Subs, Interfacing, and much more. Each code sample is quite easy to follow
You'll learn exactly what you need to know--and every new function is demonstrated.
The book evolved from a Perl Programming class at the University of California.
Hard to find, but worth the search.
Here is a sample;
$firstVar = 20;
$secondVar = 20;
$firstVar++ if ($secondVar == 10);
print("firstVar = $firstVar\n");
print("secondVar = $secondVar\n");
This program prints:
firstVar = 20
secondVar = 20
The program doesn't increment $firstVar because the value of $secondVar is 20 at
the time the condition is evaluated. If you changed the 10 to a 20
in the condition, Perl would increment $firstVar.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.