Buy New

or
Sign in to turn on 1-Click ordering.
or
Amazon Prime Free Trial required. Sign up when you check out. Learn More
Buy Used
Used - Good See details
$3.99 & eligible for FREE Super Saver Shipping on orders over $25. Details

or
Sign in to turn on 1-Click ordering.
 
   
More Buying Choices
Have one to sell? Sell yours here
Perl: A Beginner's Guide
 
 
Tell the Publisher!
I'd like to read this book on Kindle

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

Perl: A Beginner's Guide [Paperback]

Donald B. Thomas (Author), R. Allen Wyke (Author)
3.4 out of 5 stars  See all reviews (8 customer reviews)

Price: $32.95 & this item ships for FREE with Super Saver Shipping. Details
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.
Want it delivered Tuesday, February 14? Choose One-Day Shipping at checkout. Details
Textbook Student FREE Two-Day Shipping for students on millions of items. Learn more

Formats

Amazon Price New from Used from
Paperback $32.95  

Book Description

December 26, 2000 0072129573 978-0072129571 annotated edition
Essential skills for first-time programmers! Perl: A Beginner's Guide will teach you the fundamentals of Perl programming. It covers Perl capabilities and syntax, accessing databases, working with modules, CGI programming, debugging and much more. This beginner's guide is designed for easy learning: Modules: Each programming concept is divided into logical modules (chapters), ideal for linear learning Goals: Each module opens with the specific programming skills you’ll have by the end of the module Ask the Experts: Q&A sections throughout 1-Minute Drills: Quick self-assessment sections to check your progress Annotated Syntax: Example code annotated with commentary that points to the particular technique illustrated Projects: Coding exercises contained in each module that build on one another, from simple to complex Mastery Checks: End-of-module reviews that test proficiency using multiple-choice, fill-in-the-blank, and simple coding questions

Editorial Reviews

From the Back Cover

Essential Skills for First-Time Programmers!

Learn the basics of Perl programming from the tutorials and examples in this easy-to-follow resource. Perl: A Beginner's Guide covers fundamentals, such as general syntax and semantics, control structures, subroutines, and regular expressions. The book explains how to use Perl modules, access databases, write CGI programs, and debug code. The examples throughout the book walk you through real-world programming tasks. To speed your progress, the source code for all projects is available free online. Start programming in Perl right away with this self-paced, step-by-step learning solution.

This Beginner's Guide is Designed for Easy Learning:

  • Modules - Each programming concept is divided into logical modules (chapters), ideal for individualized learning
  • Goals - Each module opens with the specific programming skills you'll have by the end of the module
  • Ask the Experts - Q&A sections throughout are filled with extra information and interesting commentary
  • 1-Minute Drills - Quick self-assessment sections to check your progress
  • Annotated Syntax - Example code annotated with commentary that points to the particular technique illustrated
  • Projects - Coding exercises contained in each module show how to apply what you are learning
  • Mastery Checks - End-of-module reviews that test your knowledge using short-answer, multiple-choice, fill-in-the-blank, and simple coding questions

About the Author

R. Allen Wyke (Durham, NC) is a Director of the Product Technology at Engage Technologies. He is constantly working with XML, JavaScript, Perl, and other Internet technologies in implementing the company's online marketing software and services. His writing credentials include co-authoring JavaScript Unleashed, 3/e, Pure JavaScript, The Perl 5 Programmer's Reference, The Official Netscape Navigatior 4 Book, and an Internet resource book for college graduates (Pileline Press). In his spare time, Allen writes the monthll Webmaster column for SunWorld, and a weekly article, Windows and Unix Integration, for ITworld.com. Donald B. Thomas (Clayton, NC) is a software design engineer at Engage Technologies, where he works on in-depth integration projects with major online companies. He works with WML, XML, JavaScript, Perl, Java, and other Internet technologies.

Product Details

  • Paperback: 496 pages
  • Publisher: McGraw-Hill; annotated edition edition (December 26, 2000)
  • Language: English
  • ISBN-10: 0072129573
  • ISBN-13: 978-0072129571
  • Product Dimensions: 9.2 x 7.5 x 1 inches
  • Shipping Weight: 1.5 pounds (View shipping rates and policies)
  • Average Customer Review: 3.4 out of 5 stars  See all reviews (8 customer reviews)
  • Amazon Best Sellers Rank: #2,114,232 in Books (See Top 100 in Books)

More About the Author

Discover books, learn about writers, read author blogs, and more.

 

Customer Reviews

8 Reviews
5 star:
 (2)
4 star:
 (3)
3 star:    (0)
2 star:
 (2)
1 star:
 (1)
 
 
 
 
 
Average Customer Review
3.4 out of 5 stars (8 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

26 of 26 people found the following review helpful:
1.0 out of 5 stars Poor Examples, and Full of Typos, October 16, 2002
By 
hoosac (Morris Plains, NJ USA) - See all my reviews
This review is from: Perl: A Beginner's Guide (Paperback)
I am always on the lookout for Perl books from sources other than O'Reilly & Associates. Since Larry Wall works for them, they are The Authorities on the language, no question. But I've often felt that they know the language perhaps too well; they are so familiar with its subtleties that they don't do as good a job of explaining the basics as they might.

I consider myself to be beyond the novice stage in Perl programming, but far from an expert, so I was very interested in what Perl: A Beginner's Guide had to say.

It is a maddening book. I really would like to say something positive about it, but it is so full of typos, and so haphazardly put together, that I just can't.

The slipshod feeling shows right from the beginning. After explaining how to run the traditional "Hello, World" program, the authors explain the chomp() function, which removes a newline character from the end of an input line. We're then given a Note, with a box around it, to clear up a key point:

"Perl also has a function called chomp(), which removes the last character of a string. Unlike chomp(), chomp() removes any character, no matter what it is, whereas chomp() only remove the character if it's a newline character. When you only need to remove a trailing newline character, you should always use chomp(), because it's safer."

Got that?

Sure, you know that they're talking about chop() versus chomp(), and this is only a typo. But how long will it take the beginner who's reading this book to figure that out?

On page 59 the authors introduce Perl's comparison operators, including the = = operator inherited from C, and the source of much confusion among novices and experts alike. Twenty-three pages later we finally get an example of one of these operators, and it's wrong:

$a = 20;
if( $a = 15){
print "a is equal to 15\n";
}
else....

This example, of course, will print "a is equal to 15" until the cows come home. Or until the reader throws the book aside in disgust.

I could go on, but you get the point. The problem is not only that the book is full of small errors like the ones I've cited; the problem is that their presence makes you mistrust everything the book says, even when it's correct.

A more subtle issue, and one that's harder to get a handle on, is the fact that the book's examples are, for the most part, trivial. You get the feeling that the authors, faced with the need to come up with an example to illustrate the feature of the language they were discussing at the moment, just wrote down whatever popped into their heads. The examples illustrate the point, but they don't take on the more important job of helping the reader to begin to think like a Perl programmer.

For example, in the section on regular expressions, there are a series of examples that use this syntax:

if ($result = $string1 =~ /Hello/){

This example is used over and over, and yes, it works. But, since we never make use of $result anywhere else, a Perl programmer would simplify this to:

if ($string1 =~ /Hello/){

Moreover, in the real world, you'd be more likely to see something like:

if (/Hello/){

-- which makes use of the implied $_ variable. Although an awareness and understanding of the many $x variables are key to understanding Perl's often-cryptic syntax, references to them are sprinkled haphazardly throughout the book; nowhere are they laid out in a logical, orderly fashion.

As I said at the beginning, I really would like to like this book. The authors obviously have gone out of their way to try to write a manual that makes Perl approachable for beginners. What they've got here is a good first draft; but it's not ready for publication.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


7 of 7 people found the following review helpful:
5.0 out of 5 stars Excellent Introduction to Perl, February 23, 2001
By A Customer
Amazon Verified Purchase(What's this?)
This review is from: Perl: A Beginner's Guide (Paperback)
A lot of people write intoduction or beginning books for computer programming. But what most of these beginning books do is to very slowly introduce a few concepts then jump into advance topics without explaining how or why they got there. This book, although not perfect, is a quantum leap compared to other beginner books.

The book starts off with a brief history of Perl and then slowly introduces the language of Perl a step at a time. Then it goes to the next logical step without skipping over important topics. The book does a good job of helping the reader write Perl programs for the three major systems NT, Unix and Mac and even gives some advice on how to work your server settings and how to access Perl with html.

One of the areas the book could improve on is how you can apply the lesson you are learning about Perl for a problem. While the book does cover this a little bit, and anyone with some programming knowledge knows why or how, the authors could give a few real world reasons why you need such things as arrays in Perl.

This book is highly recommended. Reading through this book will give you an excellent base in learning the Perl language.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


1 of 1 people found the following review helpful:
2.0 out of 5 stars good bad and ugly, December 1, 2002
By A Customer
This review is from: Perl: A Beginner's Guide (Paperback)
good: very simple treatment of the perl language. you can learn to program some relatively simple stuff if you haven't done any programming in 15 years (like me).

bad: the book is ATROCIOUSLY edited. i find at least one significantly confusing typo every few pages. if you look on the bright side, you can use these mistakes to hone your skills on finding scripting errors, but in general, it seems to reflect a lack of care in putting the book together.

ugly: this is for an absolute beginner who's willing to work through all of the typos. you will have to shell out additional $$ to begin to use perl in any productive manner.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews






Only search this product's reviews



Inside This Book (learn more)
First Sentence:
Welcome to Perl: A Beginner's Guide. Read the first page
Key Phrases - Statistically Improbable Phrases (SIPs): (learn more)
previous programming example, list range operator, statment block, yntax error, next control statement, scalar variable assignment, last control statement, support for this platform, last forward slash, while conditional statement, chop function, syntax for this function, chomp function, hash variable, scalar variable names, extra backslash, header directive, array slice, following illustration displays, pattern anchor, current file system, directory handle, consider the following array, translation option, second subroutine
Key Phrases - Capitalized Phrases (CAPs): (learn more)
Beginner's Guide, Mastery Check, Netscape Communicator, Allen Wyke, Internet Explorer, Revision History, Script Version, Help Viewer, North Carolina, Red Hat, Version Added, Customer Information, Apache Web, Common Gateway Interface, Larry Wall, Music Tastes, Note Remember, Code Response Description, Example Explanation, Microsoft Windows, System Folder, General Public License, Heavy Metal, Hint Want, John Doe
New!
Books on Related Topics | Concordance | Text Stats
Browse Sample Pages:
Front Cover | Table of Contents | First Pages | Index | Back Cover | Surprise Me!
Search Inside This Book:

Citations (learn more)
This book cites 1 book:



What Other Items Do Customers Buy After Viewing This Item?


Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 
(1)

Your tags: Add your first tag
 

Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Search Customer Discussions
Search all Amazon discussions
   
Related forums


Listmania!


Create a Listmania! list

So You'd Like to...


Create a guide


Look for Similar Items by Category


Look for Similar Items by Subject