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 utf8"

utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code River stage five • 11693 direct dependents • 33184 total dependents

The "use utf8" pragma tells the Perl parser to allow UTF-8 in the program text in the current lexical scope. The "no utf8" pragma tells Perl to switch back to treating the source text as literal bytes in the current lexical scope. (On EBCDIC platform...

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

utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code River stage five • 11693 direct dependents • 33184 total dependents

The "use utf8" pragma tells the Perl parser to allow UTF-8 in the program text in the current lexical scope. The "no utf8" pragma tells Perl to switch back to treating the source text as literal bytes in the current lexical scope. (On EBCDIC platform...

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

DBM_Filter::utf8 - filter for DBM_Filter River stage five • 11693 direct dependents • 33184 total dependents

This Filter will ensure that all data written to the DBM will be encoded in UTF-8. This module uses the Encode module....

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

DBM_Filter::utf8 - filter for DBM_Filter River stage five • 11693 direct dependents • 33184 total dependents

This Filter will ensure that all data written to the DBM will be encoded in UTF-8. This module uses the Encode module....

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

re - Perl pragma to alter regular expression behaviour River stage five • 11693 direct dependents • 33184 total dependents

'taint' mode When "use re 'taint'" is in effect, and a tainted string is the target of a regexp, the regexp memories (or values returned by the m// operator in list context) are tainted. This feature is useful when regexp operations on tainted data a...

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

re - Perl pragma to alter regular expression behaviour River stage five • 11693 direct dependents • 33184 total dependents

'taint' mode When "use re 'taint'" is in effect, and a tainted string is the target of a regexp, the regexp memories (or values returned by the m// operator in list context) are tainted. This feature is useful when regexp operations on tainted data a...

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

open - perl pragma to set default PerlIO layers for input and output River stage five • 11693 direct dependents • 33184 total dependents

Full-fledged support for I/O layers is now implemented provided Perl is configured to use PerlIO as its IO system (which has been the default since 5.8, and the only supported configuration since 5.16). The "open" pragma serves as one of the interfac...

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

open - perl pragma to set default PerlIO layers for input and output River stage five • 11693 direct dependents • 33184 total dependents

Full-fledged support for I/O layers is now implemented provided Perl is configured to use PerlIO as its IO system (which has been the default since 5.8, and the only supported configuration since 5.16). The "open" pragma serves as one of the interfac...

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

bytes - Perl pragma to expose the individual bytes of characters River stage five • 11693 direct dependents • 33184 total dependents

Perl's characters are stored internally as sequences of one or more bytes. This pragma allows for the examination of the individual bytes that together comprise a character. Originally the pragma was designed for the loftier goal of helping incorpora...

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

bytes - Perl pragma to expose the individual bytes of characters River stage five • 11693 direct dependents • 33184 total dependents

Perl's characters are stored internally as sequences of one or more bytes. This pragma allows for the examination of the individual bytes that together comprise a character. Originally the pragma was designed for the loftier goal of helping incorpora...

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

feature - Perl pragma to enable new features River stage five • 11693 direct dependents • 33184 total dependents

It is usually impossible to add new syntax to Perl without breaking some existing programs. This pragma provides a way to minimize that risk. New syntactic constructs, or new semantic meanings to older constructs, can be enabled by "use feature 'foo'...

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

PerlIO - On demand loader for PerlIO layers and root of PerlIO::* name space River stage five • 11693 direct dependents • 33184 total dependents

When an undefined layer 'foo' is encountered in an "open" or "binmode" layer specification then C code performs the equivalent of: use PerlIO 'foo'; The Perl code in PerlIO.pm then attempts to locate a layer by doing require PerlIO::foo; Otherwise th...

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

PerlIO - On demand loader for PerlIO layers and root of PerlIO::* name space River stage five • 11693 direct dependents • 33184 total dependents

When an undefined layer 'foo' is encountered in an "open" or "binmode" layer specification then C code performs the equivalent of: use PerlIO 'foo'; The Perl code in PerlIO.pm then attempts to locate a layer by doing require PerlIO::foo; Otherwise th...

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

perlre - Perl regular expressions River stage five • 11693 direct dependents • 33184 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

perlre - Perl regular expressions River stage five • 11693 direct dependents • 33184 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

perlop - Perl operators and precedence River stage five • 11693 direct dependents • 33184 total dependents

In Perl, the operator determines what operation is performed, independent of the type of the operands. For example "$x + $y" is always a numeric addition, and if $x or $y do not contain numbers, an attempt is made to convert them to numbers first. Th...

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

perlop - Perl operators and precedence River stage five • 11693 direct dependents • 33184 total dependents

In Perl, the operator determines what operation is performed, independent of the type of the operands. For example "$x + $y" is always a numeric addition, and if $x or $y do not contain numbers, an attempt is made to convert them to numbers first. Th...

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

perlsub - Perl subroutines River stage five • 11693 direct dependents • 33184 total dependents

Like many languages, Perl provides for user-defined subroutines. These may be located anywhere in the main program, loaded in from other files via the "do", "require", or "use" keywords, or generated on the fly using "eval" or anonymous subroutines. ...

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

perlvar - Perl predefined variables River stage five • 11693 direct dependents • 33184 total dependents

The Syntax of Variable Names Variable names in Perl can have several formats. Usually, they must begin with a letter or underscore, in which case they can be arbitrarily long (up to an internal limit of 251 characters) and may contain letters, digits...

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

perlvar - Perl predefined variables River stage five • 11693 direct dependents • 33184 total dependents

The Syntax of Variable Names Variable names in Perl can have several formats. Usually, they must begin with a letter or underscore, in which case they can be arbitrarily long (up to an internal limit of 251 characters) and may contain letters, digits...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC
163 results (0.055 seconds)