Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1071 - 1080 of 2,642 for host:perldoc.perl.org (0.04 sec)

  1. syscall.txt

    =over =item syscall NUMBER, LIST X<syscall> X<system call> Calls the system call specified as the first element of the list, passing the remaining elements as arguments to the system call. If unimp...
    perldoc.perl.org/functions/syscall.txt
    Registered: Sun Aug 31 04:06:14 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. stat.txt

    =over =item stat FILEHANDLE X<stat> X<file, status> X<ctime> =item stat EXPR =item stat DIRHANDLE =item stat Returns a 13-element list giving the status info for a file, either the file opened via ...
    perldoc.perl.org/functions/stat.txt
    Registered: Sun Aug 31 08:24:46 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  10. goto.txt

    =over =item goto LABEL X<goto> X<jump> X<jmp> =item goto EXPR =item goto &NAME C<goto> transfers execution to a specified point in the program. Unlike a function call, execution does not return to ...
    perldoc.perl.org/functions/goto.txt
    Registered: Sun Aug 31 08:47:59 UTC 2025
    - 3.1K bytes
    - Viewed (0)
Back to top