Perl Pocket Reference, 5th Edition

Perl Pocket Reference, 5th Edition

Book Description

If you have a Perl programming question, you’ll find the answer quickly in this handy, easy-to-use quick reference. The Perl Pocket Reference condenses and organizes stacks of documentation down to the most essential facts, so you can find what you need in a heartbeat.

Updated for Perl 5.14, the 5th edition provides a summary of Perl syntax rules and a complete list of operators, built-in functions, and other features. It’s the perfect companion to O’Reilly’s authoritative and in-depth Perl programming books, including Learning Perl, Programming Perl, and the Perl Cookbook.

Table of Contents
Copyright

Chapter 1. Perl Pocket Reference
Section 1.1. Perl 5.14.1
Section 1.2. Conventions used in this book
Section 1.3. Features
Section 1.4. Syntax
Section 1.5. Embedded Documentation
Section 1.6. Data Types
Section 1.7. Quotes and Interpolation
Section 1.8. Read More ...

Modern Perl

Modern Perl

Book Description

Perl 5 is a popular, powerful, and robust programming language. With countless satisfied developers, tens of thousands of freely available libraries, and continual improvements to the language and its ecosystem, modern Perl development can be easy, reliable, and fun. To take advantage of the full power of Perl 5–to become a true expert, capable of solving any problem put before you–you must understand the language. Modern Perl explains Perl 5 from theory to implementation, including Perl 5.12.

Perl 1.0 came out in 1987. In the decades since then, The language has gone from a simple tool for system administration somewhere between shell scripting and C programming (Perl 1) to a powerful, general purpose language steeped in a rich heritage (Perl 5) and a consistent, coherent, rethinking of programming intended to last for at least another 25 years (Perl 6).

Even so, most Perl 5 programs in the world take far too little advantage of the language. You can write Perl 5 programs as if they were Perl 4 programs (or Perl 3 or 2 or 1), Read More ...

Learning Perl, 6th Edition

Learning Perl, 6th Edition

Book Description

Popularly known as “the Llama,” Learning Perl is the book most programmers rely on to get started with this versatile language. The bestselling Perl tutorial since it was first published in 1993, this sixth edition includes recent changes to the language up to Perl 5.14.

This book reflects the combined experience of its authors, who have taught Perl at Stonehenge Consulting since 1991. Years of classroom testing and experience helped shape the book’s pace and scope, and this edition is packed with exercises that let you practice the concepts while you follow the text.

Topics include:

  • Perl data & variable types
  • Subroutines
  • File operations
  • Regular expressions
  • String manipulation (including Unicode)
  • Lists & sorting
  • Process management
  • Smart matching
  • Using third party modules

Perl is the language for people who want to get work done. Originally targeted to Read More ...

Catalyst 5.8: the Perl MVC Framework

Catalyst 5.8: the Perl MVC Framework

Book Description

Many web applications are implemented in a way that makes developing them difficult and repetitive. Catalyst is an open source Perl-based Model-View-Controller framework that aims to solve this problem by reorganizing your web application to design and implement it in a natural, maintainable, and testable manner, making web development fun, fast, and rewarding.

This book teaches you how to use Catalyst to weave the various components involved in a web application, using methods and tools you personally prefer along with recommendations and details on the most popularly used objects like the DBIX ORM, TT2 Template, and Moose.

This book will take you from how the MVC pattern simplifies creating quality applications to how Catalyst allows you to tap this power instantly. It explains advanced design patterns and concludes with the improvements that Moose brings to all this. It also incorporates valuable suggestions and feedback received from the community members and our customers. By the end of Read More ...

Beginning Perl, 3rd Edition

Beginning Perl, 3rd Edition

Book Description

This is a book for those of us who believed that we didn’t need to learn Perl, and now we know it is more ubiquitous than ever. Perl is extremely flexible and powerful, and it isn’t afraid of Web 2.0 or the cloud. Originally touted as the duct tape of the Internet, Perl has since evolved into a multipurpose, multiplatform language present absolutely everywhere: heavy-duty web applications, the cloud, systems administration, natural language processing, and financial engineering. Beginning Perl, Third Edition provides valuable insight into Perl’s role regarding all of these tasks and more.

Commencing with a comprehensive overview of language basics, you’ll learn all about important concepts such as Perl’s data types and control flow constructs. This material sets the stage for a discussion of more complex topics, such as writing custom functions, using regular expressions, and file input and output. Next, the book moves on to the advanced topics of object-oriented programming, Read More ...

Perl Best Practices

Perl Best Practices

Book Description

Many programmers code by instinct, relying on convenient habits or a “style” they picked up early on. They aren’t conscious of all the choices they make, like how they format their source, the names they use for variables, or the kinds of loops they use. They’re focused entirely on problems they’re solving, solutions they’re creating, and algorithms they’re implementing. So they write code in the way that seems natural, that happens intuitively, and that feels good.

But if you’re serious about your profession, intuition isn’t enough. Perl Best Practices author Damian Conway explains that rules, conventions, standards, and practices not only help programmers communicate and coordinate with one another, they also provide a reliable framework for thinking about problems, and a common language for expressing solutions. This is especially critical in Perl, because the language is designed to offer many ways to accomplish the same task, and consequently it supports many incompatible dialects.

With a good Read More ...