Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 21 - 30 of 1,302 for label:perl (0.03 sec)

  1. fc.txt

    =over =item fc EXPR X<fc> X<foldcase> X<casefold> X<fold-case> X<case-fold> =item fc Returns the casefolded version of EXPR. This is the internal function implementing the C<\F> escape in double-qu...
    perldoc.perl.org/functions/fc.txt
    Registered: Sun Jan 19 00:08:59 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  2. seek.txt

    =over =item seek FILEHANDLE,POSITION,WHENCE X<seek> X<fseek> X<filehandle, position> Sets FILEHANDLE's position, just like the L<fseek(3)> call of C C<stdio>. FILEHANDLE may be an expression whose ...
    perldoc.perl.org/functions/seek.txt
    Registered: Sat Jan 18 23:48:38 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. readdir.txt

    =over =item readdir DIRHANDLE X<readdir> Returns the next directory entry for a directory opened by L<C<opendir>|/opendir DIRHANDLE,EXPR>. If used in list context, returns all the rest of the entri...
    perldoc.perl.org/functions/readdir.txt
    Registered: Sun Jan 19 01:12:58 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  4. recv.txt

    =over =item recv SOCKET,SCALAR,LENGTH,FLAGS X<recv> Receives a message on a socket. Attempts to receive LENGTH characters of data into variable SCALAR from the specified SOCKET filehandle. SCALAR w...
    perldoc.perl.org/functions/recv.txt
    Registered: Sun Jan 19 02:44:31 UTC 2025
    - 809 bytes
    - Viewed (0)
  5. shmread.txt

    =over =item shmread ID,VAR,POS,SIZE X<shmread> X<shmwrite> =item shmwrite ID,STRING,POS,SIZE Reads or writes the System V shared memory segment ID starting at position POS for size SIZE by attachin...
    perldoc.perl.org/functions/shmread.txt Similar Results (1)
    Registered: Sun Jan 19 04:23:18 UTC 2025
    - 769 bytes
    - Viewed (0)
  6. ucfirst.txt

    =over =item ucfirst EXPR X<ucfirst> X<uppercase> =item ucfirst Returns the value of EXPR with the B<first> character in uppercase (Unicode calls this titlecase). If EXPR is omitted, C<ucfirst> uses...
    perldoc.perl.org/functions/ucfirst.txt
    Registered: Sun Jan 19 00:35:34 UTC 2025
    - 542 bytes
    - Viewed (0)
  7. package.txt

    =over =item package NAMESPACE =item package NAMESPACE VERSION X<package> X<module> X<namespace> X<version> =item package NAMESPACE BLOCK =item package NAMESPACE VERSION BLOCK X<package> X<module> X...
    perldoc.perl.org/functions/package.txt
    Registered: Sun Jan 19 09:18:19 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  8. tie.txt

    =over =item tie VARIABLE,CLASSNAME,LIST X<tie> This function binds a variable to a package class that will provide the implementation for the variable. VARIABLE is the name of the variable to be en...
    perldoc.perl.org/functions/tie.txt
    Registered: Sun Jan 19 07:48:15 UTC 2025
    - 3K bytes
    - Viewed (0)
  9. scalar.txt

    =over =item scalar EXPR X<scalar> X<context> Forces EXPR to be interpreted in scalar context and returns the value of EXPR. my @counts = ( scalar @a, scalar @b, scalar @c ); There is no equivalent ...
    perldoc.perl.org/functions/scalar.txt
    Registered: Sun Jan 19 11:02:55 UTC 2025
    - 1K bytes
    - Viewed (0)
  10. pipe.txt

    =over =item pipe READHANDLE,WRITEHANDLE X<pipe> Opens a pair of connected pipes like the corresponding system call. Note that if you set up a loop of piped processes, deadlock can occur unless you ...
    perldoc.perl.org/functions/pipe.txt
    Registered: Sun Jan 19 09:36:41 UTC 2025
    - 831 bytes
    - Viewed (0)
Back to top