Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 901 - 910 of 2,621 for host:perldoc.perl.org (0.09 sec)

  1. sysopen.txt

    =over =item sysopen FILEHANDLE,FILENAME,MODE X<sysopen> =item sysopen FILEHANDLE,FILENAME,MODE,PERMS Opens the file whose filename is given by FILENAME, and associates it with FILEHANDLE. If FILEHA...
    perldoc.perl.org/functions/sysopen.txt
    Registered: Fri Apr 18 18:57:25 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  2. keys.txt

    =over =item keys HASH X<keys> X<key> =item keys ARRAY Called in list context, returns a list consisting of all the keys of the named hash, or in Perl 5.12 or later only, the indices of an array. Pe...
    perldoc.perl.org/functions/keys.txt
    Registered: Fri Apr 18 19:18:18 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  3. goto.txt

    =over =item goto LABEL X<goto> X<jump> X<jmp> =item goto EXPR =item goto &NAME The C<goto LABEL> form finds the statement labeled with LABEL and resumes execution there. It can't be used to get out...
    perldoc.perl.org/functions/goto.txt
    Registered: Fri Apr 18 19:57:14 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  4. do.txt

    =over =item do BLOCK X<do> X<block> Not really a function. Returns the value of the last command in the sequence of commands indicated by BLOCK. When modified by the C<while> or C<until> loop modif...
    perldoc.perl.org/functions/do.txt
    Registered: Fri Apr 18 18:28:21 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  5. 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: Fri Apr 18 18:08:10 UTC 2025
    - 1.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: Fri Apr 18 17:00:03 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  7. truncate.txt

    =over =item truncate FILEHANDLE,LENGTH X<truncate> =item truncate EXPR,LENGTH Truncates the file opened on FILEHANDLE, or named by EXPR, to the specified length. Raises an exception if truncate isn...
    perldoc.perl.org/functions/truncate.txt
    Registered: Fri Apr 18 18:13:32 UTC 2025
    - 573 bytes
    - Viewed (0)
  8. symlink.txt

    =over =item symlink OLDFILE,NEWFILE X<symlink> X<link> X<symbolic link> X<link, symbolic> Creates a new filename symbolically linked to the old filename. Returns C<1> for success, C<0> otherwise. O...
    perldoc.perl.org/functions/symlink.txt
    Registered: Fri Apr 18 20:02:40 UTC 2025
    - 398 bytes
    - Viewed (0)
  9. closedir.txt

    =over =item closedir DIRHANDLE X<closedir> Closes a directory opened by L<C<opendir>|/opendir DIRHANDLE,EXPR> and returns the success of that system call. =back 163
    perldoc.perl.org/functions/closedir.txt
    Registered: Fri Apr 18 14:57:24 UTC 2025
    - 163 bytes
    - Viewed (0)
  10. values.txt

    =over =item values HASH X<values> =item values ARRAY In list context, returns a list consisting of all the values of the named hash. In Perl 5.12 or later only, will also return a list of the value...
    perldoc.perl.org/functions/values.txt
    Registered: Fri Apr 18 20:39:48 UTC 2025
    - 2.6K bytes
    - Viewed (0)
Back to top