The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "distribution:perl perl-tutorial"

perlretut - Perl regular expressions tutorial River stage five • 11292 direct dependents • 32664 total dependents

This page provides a basic tutorial on understanding, creating and using regular expressions in Perl. It serves as a complement to the reference page on regular expressions perlre. Regular expressions are an integral part of the "m//", "s///", "qr//"...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlretut - Perl regular expressions tutorial River stage five • 11292 direct dependents • 32664 total dependents

This page provides a basic tutorial on understanding, creating and using regular expressions in Perl. It serves as a complement to the reference page on regular expressions perlre. Regular expressions are an integral part of the "m//", "s///", "qr//"...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perlunitut - Perl Unicode Tutorial River stage five • 11292 direct dependents • 32664 total dependents

The days of just flinging strings around are over. It's well established that modern programs need to be capable of communicating funny accented letters, and things like euro symbols. This means that programmers need new habits. It's easy to program ...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlunitut - Perl Unicode Tutorial River stage five • 11292 direct dependents • 32664 total dependents

The days of just flinging strings around are over. It's well established that modern programs need to be capable of communicating funny accented letters, and things like euro symbols. This means that programmers need new habits. It's easy to program ...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perldebtut - Perl debugging tutorial River stage five • 11292 direct dependents • 32664 total dependents

A (very) lightweight introduction in the use of the perl debugger, and a pointer to existing, deeper sources of information on the subject of debugging perl programs. There's an extraordinary number of people out there who don't appear to know anythi...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perldebtut - Perl debugging tutorial River stage five • 11292 direct dependents • 32664 total dependents

A (very) lightweight introduction in the use of the perl debugger, and a pointer to existing, deeper sources of information on the subject of debugging perl programs. There's an extraordinary number of people out there who don't appear to know anythi...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlthrtut - Tutorial on threads in Perl River stage five • 11292 direct dependents • 32664 total dependents

This tutorial describes the use of Perl interpreter threads (sometimes referred to as *ithreads*). In this model, each thread runs in its own Perl interpreter, and any data sharing between threads must be explicit. The user-level interface for *ithre...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlthrtut - Tutorial on threads in Perl River stage five • 11292 direct dependents • 32664 total dependents

This tutorial describes the use of Perl interpreter threads (sometimes referred to as *ithreads*). In this model, each thread runs in its own Perl interpreter, and any data sharing between threads must be explicit. The user-level interface for *ithre...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perlootut - Object-Oriented Programming in Perl Tutorial River stage five • 11292 direct dependents • 32664 total dependents

This document provides an introduction to object-oriented programming in Perl. It begins with a brief overview of the concepts behind object oriented design. Then it introduces several different OO systems from CPAN <https://www.cpan.org> which build...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perlootut - Object-Oriented Programming in Perl Tutorial River stage five • 11292 direct dependents • 32664 total dependents

This document provides an introduction to object-oriented programming in Perl. It begins with a brief overview of the concepts behind object oriented design. Then it introduces several different OO systems from CPAN <https://www.cpan.org> which build...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perl - The Perl 5 language interpreter River stage five • 11292 direct dependents • 32664 total dependents

Perl officially stands for Practical Extraction and Report Language, except when it doesn't. Perl was originally a language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports based on that ...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perl - The Perl 5 language interpreter River stage five • 11292 direct dependents • 32664 total dependents

Perl officially stands for Practical Extraction and Report Language, except when it doesn't. Perl was originally a language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports based on that ...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlre - Perl regular expressions River stage five • 11292 direct dependents • 32664 total dependents

This page describes the syntax of regular expressions in Perl. If you haven't used regular expressions before, a tutorial introduction is available in perlretut. If you know just a little about them, a quick-start introduction is available in perlreq...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perlre - Perl regular expressions River stage five • 11292 direct dependents • 32664 total dependents

This page describes the syntax of regular expressions in Perl. If you haven't used regular expressions before, a tutorial introduction is available in perlretut. If you know just a little about them, a quick-start introduction is available in perlreq...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlref - Perl references and nested data structures River stage five • 11292 direct dependents • 32664 total dependents

Before release 5 of Perl it was difficult to represent complex data structures, because all references had to be symbolic--and even then it was difficult to refer to a variable instead of a symbol table entry. Perl now not only makes it easier to use...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perlref - Perl references and nested data structures River stage five • 11292 direct dependents • 32664 total dependents

Before release 5 of Perl it was difficult to represent complex data structures, because all references had to be symbolic--and even then it was difficult to refer to a variable instead of a symbol table entry. Perl now not only makes it easier to use...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlobj - Perl object reference River stage five • 11292 direct dependents • 32664 total dependents

This document provides a reference for Perl's object orientation features. If you're looking for an introduction to object-oriented programming in Perl, please see perlootut. In order to understand Perl objects, you first need to understand reference...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perlobj - Perl object reference River stage five • 11292 direct dependents • 32664 total dependents

This document provides a reference for Perl's object orientation features. If you're looking for an introduction to object-oriented programming in Perl, please see perlootut. In order to understand Perl objects, you first need to understand reference...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlmod - Perl modules (packages and symbol tables) River stage five • 11292 direct dependents • 32664 total dependents

Is this the document you were after? There are other documents which might contain the information that you're looking for: This doc Perl's packages, namespaces, and some info on classes. perlnewmod Tutorial on making a new module. perlmodstyle Best ...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlmod - Perl modules (packages and symbol tables) River stage five • 11292 direct dependents • 32664 total dependents

Is this the document you were after? There are other documents which might contain the information that you're looking for: This doc Perl's packages, namespaces, and some info on classes. perlnewmod Tutorial on making a new module. perlmodstyle Best ...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC
68 results (0.137 seconds)