• Complain

Vromans - Perl Pocket Reference

Here you can read online Vromans - Perl Pocket Reference full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. City: Beijing, Sebastopol, CA, year: 2011, publisher: OReilly Media, Inc., genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

No cover
  • Book:
    Perl Pocket Reference
  • Author:
  • Publisher:
    OReilly Media, Inc.
  • Genre:
  • Year:
    2011
  • City:
    Beijing, Sebastopol, CA
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

Perl Pocket Reference: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Perl Pocket Reference" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

If you have a Perl programming question, youll 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.

Vromans: author's other books


Who wrote Perl Pocket Reference? Find out the surname, the name of the author of the book and a list of all author's works by series.

Perl Pocket Reference — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Perl Pocket Reference" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Perl: Pocket Reference
Johan Vromans
Editor
Simon St. Laurent

Copyright 2011 Johan Vromans

Perl Pocket Reference, Fifth Edition

by Johan Vromans

All rights reserved.

Previous editions of this book were published as Perl 4 Pocket Reference and Perl 5 Pocket Reference .

Published by OReilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472.

OReilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (.

Editor: Simon St. Laurent

Nutshell Handbook, the Nutshell Handbook logo, and the OReilly logo are registered trademarks of OReilly Media, Inc. The Pocket Reference/Pocket Guide series designations, Perl Pocket Reference , the image of the camel, and related trade dress are trademarks of OReilly Media, Inc.

Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and OReilly Media, Inc. was aware of a trademark claim, the designations have been printed in caps or initial caps.

While every precaution has been taken in the preparation of this book, the publisher and author(s) assume no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein.

978-1-449-30370-9
[T]

OReilly Media SPECIAL OFFER Upgrade this ebook with OReilly for more - photo 1

O'Reilly Media

SPECIAL OFFER: Upgrade this ebook with OReilly

for more information on this offer!

Please note that upgrade offers are not available from sample content.

Chapter 1. Perl Pocket Reference

The Perl Pocket Reference is a quick reference guide to Larry Walls Perl programming language. It contains a concise description of all statements, functions, and variables, and lots of other useful information.

The purpose of the Pocket Reference is to aid users of Perl in finding the syntax of specific functions and statements and the meaning of built-in variables. It is not a self-contained user guide; basic knowledge of the Perl language is required. It is also not complete; some of the more obscure variants of Perl constructs have been left out. But all functions and variables are mentioned in at least one way they can be used.

Perl 5.14.1

Perl releases are identified by a version number, a sequence of at least two numbers, separated by periods. This books describes Perl 5.14.1, released on June 16, 2011.

5.14.1

Meaning

5

The language revision. Perl 5 was first released on October 17,1994.

14

The version of this revision.

An even number indicates an official production version, while an odd number indicates a development version.

1

The subversion. 0 (zero) is the first release, higher numbers indicate maintenance releases.

Conventions used in this book
this

denotes text that you enter literally.

this

means variable text, i.e., things you must fill in.

this

means that if this is omitted, $_ will be used instead.

word

is a keyword, i.e., a word with a special meaning.

[... ]

denotes an optional part.

Picture 2

points to related documents, which can be viewed with a perldoc command.

Features

As of version 5.10, Perl supports features to selectively enhance the syntax and semantics of the language. Features can be enabled with usefeature and disabled with nofeature, see the section .

Feature

Perl

Description

Page

say

5.10

Enables the keyword say .

state

5.10

Enables the keyword state .

switch

5.10

Enables the keywords given , when , break , and default .

unicode_strings

5.12

Enables Unicode semantics in all string operations.

:5.10

5.10

All 5.10 features.

:5.12

5.12

All 5.10 and 5.12 features.

:5.14

5.14

All 5.10, 5.12 and 5.14 features.

Feature bundles like :5.14 provide a quick means to get a fully featured Perl, although it is easier to automatically enable version dependent features with:

use 5.14.0;
Syntax

Perl is a free-format programming language. This means that in general it does not matter how a Perl program is written with regard to indentation and lines.

An exception is when Perl encounters a sharp or pound symbol (#) in the input: it then discards this symbol and everything following it up to the end of the current input line. This can be used to put comments in Perl programs. Real programmers put lots of useful comments in their programs.

There are places where whitespace does matter: within literal text, patterns, and formats.

If the Perl compiler encounters the special token __DATA__, it discards this symbol and stops reading input. Anything following this token is ignored by the compiler, but can be read by the program when it is run, using the package filehandle DATA.

__END__ behaves like __DATA__ in the top level script (but not in files loaded with require or do ) and leaves the remaining contents of the file accessible via the global filehandle DATA.

When Perl is expecting a new statement and encounters a line that starts with =, it skips all input up to and including a line that starts with =cut. This is used to embed documentation.

Picture 3perlsyn.

Embedded Documentation

Tools exist to extract embedded documentation and generate input suitable for several formatters like troff, L A TEX, and HTML. The following commands can be used to control embedded documentation:

=back

See =over on the next page.

=beginfmt

Sets the subsequent text up to a matching =end to be included only when processed for formatter fmt .

=cut

Ends a document section.

=endfmt

See =begin.

=forfmt

Restricts the remainder of just this paragraph to be included only when processed for formatter fmt.

=headN heading

Produces a heading. N must be 1, 2, 3, or 4.

=itemtext
Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Perl Pocket Reference»

Look at similar books to Perl Pocket Reference. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Perl Pocket Reference»

Discussion, reviews of the book Perl Pocket Reference and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.