Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1071 - 1080 of 1,306 for label:perl (0.04 sec)

  1. 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: Thu Jun 05 08:09:18 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. 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: Thu Jun 05 07:45:31 UTC 2025
    - 1.5K 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: Thu Jun 05 03:44:41 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: Thu Jun 05 05:25:35 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: Thu Jun 05 12:00:22 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. chomp.txt

    =over =item chomp VARIABLE X<chomp> X<INPUT_RECORD_SEPARATOR> X<$/> X<newline> X<eol> =item chomp( LIST ) =item chomp This safer version of L<C<chop>|/chop VARIABLE> removes any trailing string tha...
    perldoc.perl.org/functions/chomp.txt
    Registered: Thu Jun 05 13:37:33 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. 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: Thu Jun 05 12:20:27 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  8. oct.txt

    =over =item oct EXPR X<oct> X<octal> X<hex> X<hexadecimal> X<binary> X<bin> =item oct Interprets EXPR as an octal string and returns the corresponding value. An octal string consists of octal digit...
    perldoc.perl.org/functions/oct.txt
    Registered: Thu Jun 05 09:30:43 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  9. printf.txt

    =over =item printf FILEHANDLE FORMAT, LIST X<printf> =item printf FILEHANDLE =item printf FORMAT, LIST =item printf Equivalent to C<print FILEHANDLE sprintf(FORMAT, LIST)>, except that L<C<$\>|perl...
    perldoc.perl.org/functions/printf.txt
    Registered: Thu Jun 05 09:04:55 UTC 2025
    - 1.6K 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: Thu Jun 05 11:05:56 UTC 2025
    - 787 bytes
    - Viewed (0)
Back to top