Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 2091 - 2100 of 3,449 for filetype:txt (0.14 sec)

  1. eof.txt

    =over =item eof FILEHANDLE X<eof> X<end of file> X<end-of-file> =item eof () =item eof Returns 1 if the next read on FILEHANDLE will return end of file I<or> if FILEHANDLE is not open. FILEHANDLE m...
    perldoc.perl.org/functions/eof.txt
    Registered: Sun Aug 31 03:57:57 UTC 2025
    - 2K bytes
    - Viewed (0)
  2. 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: Sun Aug 31 04:50:15 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  3. 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: Sun Aug 31 03:23:48 UTC 2025
    - 948 bytes
    - Viewed (0)
  4. 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: Sun Aug 31 02:45:28 UTC 2025
    - 1021 bytes
    - Viewed (0)
  5. 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: Sun Aug 31 02:52:39 UTC 2025
    - 749 bytes
    - Viewed (0)
  6. 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: Sun Aug 31 03:36:27 UTC 2025
    - 713 bytes
    - Viewed (0)
  7. perlfunc.txt

    =head1 NAME X<function> perlfunc - Perl builtin functions =head1 DESCRIPTION The functions in this section can serve as terms in an expression. They fall into two major categories: list operators a...
    perldoc.perl.org/perlfunc.txt
    Registered: Mon Aug 25 20:41:58 UTC 2025
    - 416.4K bytes
    - Viewed (0)
  8. Thread.txt

    package Thread; use strict; use warnings; no warnings 'redefine'; our $VERSION = '3.06'; $VERSION = eval $VERSION; BEGIN { use Config; if (! $Config{useithreads}) { die("This Perl not built to supp...
    perldoc.perl.org/Thread.txt
    Registered: Tue Aug 26 03:12:47 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  9. Tie::RefHash.txt

    package Tie::RefHash; # git description: v1.40-9-g23812d9 # ABSTRACT: Use references as hash keys our $VERSION = '1.41'; #pod =head1 SYNOPSIS #pod #pod require 5.004; #pod use Tie::RefHash; #pod ti...
    perldoc.perl.org/Tie::RefHash.txt
    Registered: Tue Aug 26 01:20:20 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  10. 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: Sun Aug 31 05:54:26 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top