logo
Product categories

EbookNice.com

Most ebook files are in PDF format, so you can easily read them using various software such as Foxit Reader or directly on the Google Chrome browser.
Some ebook files are released by publishers in other formats such as .awz, .mobi, .epub, .fb2, etc. You may need to install specific software to read these formats on mobile/PC, such as Calibre.

Please read the tutorial at this link.  https://ebooknice.com/page/post?id=faq


We offer FREE conversion to the popular formats you request; however, this may take some time. Therefore, right after payment, please email us, and we will try to provide the service as quickly as possible.


For some exceptional file formats or broken links (if any), please refrain from opening any disputes. Instead, email us first, and we will try to assist within a maximum of 6 hours.

EbookNice Team

(Ebook) Learning Perl 6th Edition by Randal Schwartz, brian foy, Tom Phoenix 1449313140 9781449313142

  • SKU: EBN-26906596
Zoomable Image
$ 32 $ 40 (-20%)

Status:

Available

4.3

32 reviews
Instant download (eBook) Learning Perl, 6th Edition after payment.
Authors:Randal L. Schwartz, brian d foy, Tom Phoenix
Pages:0 pages.
Year:2011
Editon:6
Publisher:O'Reilly Media
Language:english
File Size:7.54 MB
Format:pdf
ISBNS:9781449313142, 1449313140
Categories: Ebooks

Product desciption

(Ebook) Learning Perl 6th Edition by Randal Schwartz, brian foy, Tom Phoenix 1449313140 9781449313142

Learning Perl 6th Edition by Randal L. Schwartz, brian d foy, Tom Phoenix - Ebook PDF Instant Download/DeliveryISBN: 1449313140, 9781449313142

Full download Learning Perl 6th Edition after payment.



Product details:

ISBN-10 :  1449313140 

ISBN-13 : 9781449313142

Author:  Randal L. Schwartz, brian d foy, Tom Phoenix 

If you're just getting started with Perl, this is the book you want—whether you're a programmer, system administrator, or web hacker. Nicknamed "the Llama" by two generations of users, this bestseller closely follows the popular introductory Perl course taught by the authors since 1991. This 6th edition covers recent changes to the language up to version 5.14.Perl is suitable for almost any task on almost any platform, from short fixes to complete web applications. Learning Perl teaches you the basics and shows you how to write programs up to 128 lines long—roughly the size of 90% of the Perl programs in use today. Each chapter includes exercises to help you practice what you've just learned. Other books may teach you to program in Perl, but this book will turn you into a Perl programmer.Topics include:Perl data and variable typesSubroutinesFile operationsRegular expressionsString manipulation (including Unicode)Lists and sortingProcess managementSmart matchingUse of third party modules

 

Learning Perl 6th Table of contents:

1. Introduction
Questions and Answers
Is This the Right Book for You?
Why Are There So Many Footnotes?
What About the Exercises and Their Answers?
What Do Those Numbers Mean at the Start of the Exercise?
What If I’m a Perl Course Instructor?
What Does “Perl” Stand For?
Why Did Larry Create Perl?
Why Didn’t Larry Just Use Some Other Language?
Is Perl Easy or Hard?
How Did Perl Get to Be So Popular?
What’s Happening with Perl Now?
What’s Perl Really Good For?
What Is Perl Not Good For?
How Can I Get Perl?
What Is CPAN?
How Can I Get Support for Perl?
Are There Any Other Kinds of Support?
What If I Find a Bug in Perl?
How Do I Make a Perl Program?
A Simple Program
What’s Inside That Program?
How Do I Compile My Perl Program?
A Whirlwind Tour of Perl
Exercises
2. Scalar Data
Numbers
All Numbers Have the Same Format Internally
Floating-Point Literals
Integer Literals
Nondecimal Integer Literals
Numeric Operators
Strings
Single-Quoted String Literals
Double-Quoted String Literals
String Operators
Automatic Conversion Between Numbers and Strings
Perl’s Built-in Warnings
Scalar Variables
Choosing Good Variable Names
Scalar Assignment
Binary Assignment Operators
Output with print
Interpolation of Scalar Variables into Strings
Creating Characters by Code Point
Operator Precedence and Associativity
Comparison Operators
The if Control Structure
Boolean Values
Getting User Input
The chomp Operator
The while Control Structure
The undef Value
The defined Function
Exercises
3. Lists and Arrays
Accessing Elements of an Array
Special Array Indices
List Literals
The qw Shortcut
List Assignment
The pop and push Operators
The shift and unshift Operators
The splice Operator
Interpolating Arrays into Strings
The foreach Control Structure
Perl’s Favorite Default: $_
The reverse Operator
The sort Operator
The each Operator
Scalar and List Context
Using List-Producing Expressions in Scalar Context
Using Scalar-Producing Expressions in List Context
Forcing Scalar Context
in List Context
Exercises
4. Subroutines
Defining a Subroutine
Invoking a Subroutine
Return Values
Arguments
Private Variables in Subroutines
Variable-Length Parameter Lists
A Better &max Routine
Empty Parameter Lists
Notes on Lexical (my) Variables
The use strict Pragma
The return Operator
Omitting the Ampersand
Non-Scalar Return Values
Persistent, Private Variables
Exercises
5. Input and Output
Input from Standard Input
Input from the Diamond Operator
The Invocation Arguments
Output to Standard Output
Formatted Output with printf
Arrays and printf
Filehandles
Opening a Filehandle
Binmoding Filehandles
Bad Filehandles
Closing a Filehandle
Fatal Errors with die
Warning Messages with warn
Automatically die-ing
Using Filehandles
Changing the Default Output Filehandle
Reopening a Standard Filehandle
Output with say
Filehandles in a Scalar
Exercises
6. Hashes
What Is a Hash?
Why Use a Hash?
Hash Element Access
The Hash As a Whole
Hash Assignment
The Big Arrow
Hash Functions
The keys and values Functions
The each Function
Typical Use of a Hash
The exists Function
The delete Function
Hash Element Interpolation
The %ENV hash
Exercises
7. In the World of Regular Expressions
What Are Regular Expressions?
Using Simple Patterns
Unicode Properties
About Metacharacters
Simple Quantifiers
Grouping in Patterns
Alternatives
Character Classes
Character Class Shortcuts
Negating the Shortcuts
Exercises
8. Matching with Regular Expressions
Matches with m//
Match Modifiers
Case-Insensitive Matching with /i
Matching Any Character with /s
Adding Whitespace with /x
Combining Option Modifiers
Choosing a Character Interpretation
Other Options
Anchors
Word Anchors
The Binding Operator =~
Interpolating into Patterns
The Match Variables
The Persistence of Captures
Noncapturing Parentheses
Named Captures
The Automatic Match Variables
General Quantifiers
Precedence
Examples of Precedence
And There’s More
A Pattern Test Program
Exercises
9. Processing Text with Regular Expressions
Substitutions with s///
Global Replacements with /g
Different Delimiters
Substitution Modifiers
The Binding Operator
Nondestructive Substitutions
Case Shifting
The split Operator
The join Function
m// in List Context
More Powerful Regular Expressions
Nongreedy Quantifiers
Matching Multiple-Line Text
Updating Many Files
In-Place Editing from the Command Line
Exercises
10. More Control Structures
The unless Control Structure
The else Clause with unless
The until Control Structure
Expression Modifiers
The Naked Block Control Structure
The elsif Clause
Autoincrement and Autodecrement
The Value of Autoincrement
The for Control Structure
The Secret Connection Between foreach and for
Loop Controls
The last Operator
The next Operator
The redo Operator
Labeled Blocks
The Conditional Operator ?:
Logical Operators
The Value of a Short Circuit Operator
The defined-or Operator
Control Structures Using Partial-Evaluation Operators
Exercises
11. Perl Modules
Finding Modules
Installing Modules
Using Your Own Directories
Using Simple Modules
The File::Basename Module
Using Only Some Functions from a Module
The File::Spec Module
Path::Class
CGI.pm
Databases and DBI
Dates and Times
Exercises
12. File Tests
File Test Operators
Testing Several Attributes of the Same File
Stacked File Test Operators
The stat and lstat Functions
The localtime Function
Bitwise Operators
Using Bitstrings
Exercises
13. Directory Operations
Moving Around the Directory Tree
Globbing
An Alternate Syntax for Globbing
Directory Handles
Recursive Directory Listing
Manipulating Files and Directories
Removing Files
Renaming Files
Links and Files
Making and Removing Directories
Modifying Permissions
Changing Ownership
Changing Timestamps
Exercises
14. Strings and Sorting
Finding a Substring with index
Manipulating a Substring with substr
Formatting Data with sprintf
Using sprintf with “Money Numbers”
Interpreting Non-Decimal Numerals
Advanced Sorting
Sorting a Hash by Value
Sorting by Multiple Keys
Exercises
15. Smart Matching and given-when
The Smart Match Operator
Smart Match Precedence
The given Statement
Dumb Matching
Using when with Many Items
Exercises
16. Process Management
The system Function
Avoiding the Shell
The Environment Variables
The exec Function
Using Backquotes to Capture Output
Using Backquotes in a List Context
External Processes with IPC::System::Simple
Processes as Filehandles
Getting Down and Dirty with Fork
Sending and Receiving Signals
Exercises
17. Some Advanced Perl Techniques
Slices
Array Slice
Hash Slice
Trapping Errors
Using eval
More Advanced Error Handling
autodie
Picking Items from a List with grep
Transforming Items from a List with map
Fancier List Utilities
Exercises

 

People also search for Learning Perl 6th:

learning perl 8th edition pdf
    
machine learning perl
    
learning perl 7th edition pdf
    
learning perl 8th edition
    
learning perl 7th edition

 

Tags: Learning Perl, Randal Schwartz, brian foy, Tom Phoenix

*Free conversion of into popular formats such as PDF, DOCX, DOC, AZW, EPUB, and MOBI after payment.

Related Products