in reply to Need Perl book advice

PM has a good list of references in outside links - reference material you should look at, and you should search PM for articles on best perl books.

Clearly missing from your reference shelf, in my opinion, is the Perl Cookbook which has many, many examples of small, but really useful routines that you can combine and Mastering Regular Expressions which will show you how to use one of the best built-in features of perl.

Beyond that, it largely depends what you mean by "sweet programs" that you've seen.

-xdg

Code posted by xdg on PerlMonks is public domain. It has no warranties, express or implied. Posted code may not have been tested. Use at your own risk.

Replies are listed 'Best First'.
Re^2: Need Perl book advice
by doom (Deacon) on Jul 31, 2004 at 09:02 UTC
    I wanted to second the recommendation for the Perl Cookbook, and to emphasize that it's more than just a bunch of little routines: every one of them is discussed throughly, and gathered together into logical chapters, e.g. the chapter on XML is probably the first thing you should read on the subject of perl and XML.

    But I also wanted to say, don't neglect the on-line documentation. Perl comes with a very complete set of reference information, and also quite a few tutorials on different subjects. If you do a "man perl", you'll see a listing of other perl man pages, and right at the top is a section on the tutorials, including subjects like references, data structures, regular expressions and objects...

    And once you're through that material, you might try looking at the Perl Design Patterns site.