Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 881 - 890 of 1,306 for label:perl (0.05 sec)

  1. 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: Thu Jun 05 11:11:41 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. select.txt

    =over =item select FILEHANDLE X<select> X<filehandle, default> =item select Returns the currently selected filehandle. If FILEHANDLE is supplied, sets the new current default filehandle for output....
    perldoc.perl.org/functions/select.txt
    Registered: Thu Jun 05 11:38:17 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  3. 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: Thu Jun 05 09:47:12 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  4. print.txt

    =over =item print FILEHANDLE LIST X<print> =item print FILEHANDLE =item print LIST =item print Prints a string or a list of strings. Returns true if successful. FILEHANDLE may be a scalar variable ...
    perldoc.perl.org/functions/print.txt
    Registered: Thu Jun 05 08:58:01 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. 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: Thu Jun 05 09:23:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. mkdir.txt

    =over =item mkdir FILENAME,MODE X<mkdir> X<md> X<directory, create> =item mkdir FILENAME =item mkdir Creates the directory specified by FILENAME, with permissions specified by MODE (as modified by ...
    perldoc.perl.org/functions/mkdir.txt
    Registered: Thu Jun 05 10:58:29 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  7. 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: Thu Jun 05 09:37:49 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. 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: Thu Jun 05 11:23:32 UTC 2025
    - 785 bytes
    - Viewed (0)
  9. 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: Thu Jun 05 08:37:38 UTC 2025
    - 183 bytes
    - Viewed (0)
  10. 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: Thu Jun 05 12:58:39 UTC 2025
    - 3.7K bytes
    - Viewed (0)
Back to top