Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 5041 - 5050 of 6,922 for content_length:[0 TO 9999] (0.1 sec)

  1. uc.txt

    =over =item uc EXPR X<uc> X<uppercase> X<toupper> =item uc Returns an uppercased version of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. my $str = uc("Perl is GREAT"); # "PERL IS GREAT" This...
    perldoc.perl.org/functions/uc.txt
    Registered: Wed Apr 02 05:47:15 UTC 2025
    - 599 bytes
    - Viewed (0)
  2. join.txt

    =over =item join EXPR,LIST X<join> Joins the separate strings of LIST into a single string with fields separated by the value of EXPR, and returns that new string. Example: my $rec = join(':', $log...
    perldoc.perl.org/functions/join.txt
    Registered: Wed Apr 02 09:05:18 UTC 2025
    - 455 bytes
    - Viewed (0)
  3. ord.txt

    =over =item ord EXPR X<ord> X<encoding> =item ord Returns the code point of the first character of EXPR. If EXPR is an empty string, returns 0. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. (Note I...
    perldoc.perl.org/functions/ord.txt
    Registered: Wed Apr 02 06:28:32 UTC 2025
    - 319 bytes
    - Viewed (0)
  4. sin.txt

    =over =item sin EXPR X<sin> X<sine> X<asin> X<arcsine> =item sin Returns the sine of EXPR (expressed in radians). If EXPR is omitted, returns sine of L<C<$_>|perlvar/$_>. For the inverse sine opera...
    perldoc.perl.org/functions/sin.txt
    Registered: Wed Apr 02 07:01:44 UTC 2025
    - 338 bytes
    - Viewed (0)
  5. warn.txt

    =over =item warn LIST X<warn> X<warning> X<STDERR> Emits a warning, usually by printing it to C<STDERR>. C<warn> interprets its operand LIST in the same way as C<die>, but is slightly different in ...
    perldoc.perl.org/functions/warn.txt
    Registered: Wed Apr 02 10:05:37 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. read.txt

    =over =item read FILEHANDLE,SCALAR,LENGTH,OFFSET X<read> X<file, read> =item read FILEHANDLE,SCALAR,LENGTH Attempts to read LENGTH I<characters> of data into variable SCALAR from the specified FILE...
    perldoc.perl.org/functions/read.txt
    Registered: Wed Apr 02 09:50:46 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  7. chown.txt

    =over =item chown LIST X<chown> X<owner> X<user> X<group> Changes the owner (and group) of a list of files. The first two elements of the list must be the I<numeric> uid and gid, in that order. A v...
    perldoc.perl.org/functions/chown.txt
    Registered: Wed Apr 02 10:14:12 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. tell.txt

    =over =item tell FILEHANDLE X<tell> =item tell Returns the current position I<in bytes> for FILEHANDLE, or -1 on error. FILEHANDLE may be an expression whose value gives the name of the actual file...
    perldoc.perl.org/functions/tell.txt
    Registered: Wed Apr 02 09:57:39 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  9. fileno.txt

    =over =item fileno FILEHANDLE X<fileno> =item fileno DIRHANDLE Returns the file descriptor for a filehandle or directory handle, or undefined if the filehandle is not open. If there is no real file...
    perldoc.perl.org/functions/fileno.txt
    Registered: Wed Apr 02 20:44:33 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  10. rename.txt

    =over =item rename OLDNAME,NEWNAME X<rename> X<move> X<mv> X<ren> Changes the name of a file; an existing file NEWNAME will be clobbered. Returns true for success; on failure returns false and sets...
    perldoc.perl.org/functions/rename.txt
    Registered: Wed Apr 02 20:05:56 UTC 2025
    - 787 bytes
    - Viewed (0)
Back to top