Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1351 - 1360 of 2,636 for host:perldoc.perl.org (0.03 sec)

  1. perlfaq9 - Web, Email and Networking - Perldoc ...

    perlfaq9 ( source , CPAN ) CONTENTS NAME VERSION DESCRIPTION Should I use a web framework? Which web framework should...
    perldoc.perl.org/perlfaq9
    Registered: Mon Jul 07 15:30:55 UTC 2025
    - 41.9K bytes
    - Viewed (0)
  2. perliol - C API for Perl's implementation of IO...

    perliol ( source , CPAN ) CONTENTS NAME SYNOPSIS DESCRIPTION History and Background Basic Structure Layers vs Discipl...
    perldoc.perl.org/perliol
    Registered: Mon Jul 07 15:30:59 UTC 2025
    - 61.3K bytes
    - Viewed (0)
  3. die.txt

    =over =item die LIST X<die> X<throw> X<exception> X<raise> X<$@> X<abort> C<die> raises an exception. Inside an L<C<eval>|/eval EXPR> the exception is stuffed into L<C<$@>|perlvar/$@> and the L<C<e...
    perldoc.perl.org/functions/die.txt
    Registered: Tue Jul 08 11:14:58 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  4. values.txt

    =over =item values HASH X<values> =item values ARRAY Called in list context, returns a list consisting of all the value of the named hash, or in Perl 5.12 or later, the values of an array. Perl rel...
    perldoc.perl.org/functions/values.txt
    Registered: Tue Jul 08 10:44:47 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  5. qr/STRING/ - Perldoc Browser

    functions / qr/STRING/ ( source , CPAN ) # qr/STRING/ Regexp-like quote. See "Regexp Quote-Like Operators" in perlop ...
    perldoc.perl.org/functions/qr/STRING/
    Registered: Tue Jul 08 12:22:13 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  6. reverse.txt

    =over =item reverse LIST X<reverse> X<rev> X<invert> In list context, returns a list value consisting of the elements of LIST in the opposite order. In scalar context, concatenates the elements of ...
    perldoc.perl.org/functions/reverse.txt
    Registered: Tue Jul 08 11:23:37 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  7. int.txt

    =over =item int EXPR X<int> X<integer> X<truncate> X<trunc> X<floor> =item int Returns the integer portion of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. You should not use this function fo...
    perldoc.perl.org/functions/int.txt
    Registered: Tue Jul 08 14:14:18 UTC 2025
    - 948 bytes
    - Viewed (0)
  8. unshift.txt

    =over =item unshift ARRAY,LIST X<unshift> Add one or more elements to the B<beginning> of an array. This is the opposite of a L<C<shift>|/shift ARRAY>. my @animals = ("cat"); unshift(@animals, "mou...
    perldoc.perl.org/functions/unshift.txt
    Registered: Tue Jul 08 15:17:28 UTC 2025
    - 922 bytes
    - Viewed (0)
  9. 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: Tue Jul 08 12:53:48 UTC 2025
    - 888 bytes
    - Viewed (0)
  10. length.txt

    =over =item length EXPR X<length> X<size> =item length Returns the length in I<characters> of the value of EXPR. If EXPR is omitted, returns the length of L<C<$_>|perlvar/$_>. If EXPR is undefined,...
    perldoc.perl.org/functions/length.txt
    Registered: Tue Jul 08 10:35:55 UTC 2025
    - 713 bytes
    - Viewed (0)
Back to top