Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1041 - 1050 of 2,657 for host:perldoc.perl.org (0.03 sec)

  1. index.txt

    =over =item index STR,SUBSTR,POSITION X<index> X<indexOf> X<InStr> =item index STR,SUBSTR The index function searches for one string within another, but without the wildcard-like behavior of a full...
    perldoc.perl.org/functions/index.txt
    Registered: Fri Jan 16 23:26:02 UTC 2026
    - 1021 bytes
    - Viewed (0)
  2. pop.txt

    =over =item pop ARRAY X<pop> X<stack> =item pop Removes and returns the B<last> element of the array, shortening the array by one element. my @arr = ('cat', 'dog', 'mouse'); my $item = pop(@arr); #...
    perldoc.perl.org/functions/pop.txt
    Registered: Sat Jan 17 06:14:51 UTC 2026
    - 888 bytes
    - Viewed (0)
  3. chop.txt

    =over =item chop VARIABLE X<chop> =item chop( LIST ) =item chop Chops off the last character of a string and returns the character chopped. It is much more efficient than C<s/.$//s> because it neit...
    perldoc.perl.org/functions/chop.txt
    Registered: Sat Jan 17 03:45:21 UTC 2026
    - 749 bytes
    - Viewed (0)
  4. link.txt

    =over =item link OLDFILE,NEWFILE X<link> Creates a new filename linked to the old filename. Returns true for success, false otherwise. Portability issues: L<perlport/link>. =back 183
    perldoc.perl.org/functions/link.txt
    Registered: Sat Jan 17 05:21:47 UTC 2026
    - 183 bytes
    - Viewed (0)
  5. when.txt

    =over =item default =item given =item when These flow-control keywords related to the experimental switch feature are documented in L<perlsyn/"Switch Statements">. =back 174
    perldoc.perl.org/functions/when.txt Similar Results (2)
    Registered: Sat Jan 17 06:02:00 UTC 2026
    - 174 bytes
    - Viewed (0)
  6. %-.txt

    =over =item %{^CAPTURE_ALL} X<%{^CAPTURE_ALL}> =item %- X<%-> Similar to C<%+>, this variable allows access to the named capture groups in the last successful match in the currently active dynamic ...
    perldoc.perl.org/variables/%-.txt
    Registered: Mon Jan 19 02:35:01 UTC 2026
    - 1.6K bytes
    - Viewed (0)
  7. ${^OPEN}.txt

    =over =item ${^OPEN} X<${^OPEN}> An internal variable used by L<PerlIO>. A string in two parts, separated by a C<\0> byte, the first part describes the input layers, the second part describes the o...
    perldoc.perl.org/variables/${^OPEN}.txt
    Registered: Mon Jan 19 01:07:38 UTC 2026
    - 1.4K bytes
    - Viewed (0)
  8. @INC.txt

    =over =item @INC X<@INC> The array C<@INC> contains the list of places that the C<do EXPR>, C<require>, or C<use> constructs look for their library files. It initially consists of the arguments to ...
    perldoc.perl.org/variables/@INC.txt
    Registered: Mon Jan 19 00:31:58 UTC 2026
    - 987 bytes
    - Viewed (0)
  9. @ISA.txt

    =over =item @ISA X<@ISA> Each package contains a special array called C<@ISA> which contains a list of that class's parent classes, if any. This array is simply a list of scalars, each of which is ...
    perldoc.perl.org/variables/@ISA.txt
    Registered: Mon Jan 19 01:55:18 UTC 2026
    - 562 bytes
    - Viewed (0)
  10. ARGV.txt

    =over =item ARGV X<ARGV> The special filehandle that iterates over command-line filenames in C<@ARGV>. Usually written as the null filehandle in the diamond operator C<< <> >>. Note that currently ...
    perldoc.perl.org/variables/ARGV.txt
    Registered: Mon Jan 19 01:17:29 UTC 2026
    - 548 bytes
    - Viewed (0)
Back to top