Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1821 - 1830 of 2,638 for host:perldoc.perl.org (0.03 sec)

  1. readline.txt

    =over =item readline EXPR =item readline X<readline> X<gets> X<fgets> Reads from the filehandle whose typeglob is contained in EXPR (or from C<*ARGV> if EXPR is not provided). In scalar context, ea...
    perldoc.perl.org/functions/readline.txt
    Registered: Tue Jul 08 19:12:39 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. pos.txt

    =over =item pos SCALAR X<pos> X<match, position> =item pos Returns the offset of where the last C<m//g> search left off for the variable in question (L<C<$_>|perlvar/$_> is used when the variable i...
    perldoc.perl.org/functions/pos.txt
    Registered: Tue Jul 08 16:32:34 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  3. hex.txt

    =over =item hex EXPR X<hex> X<hexadecimal> =item hex Interprets EXPR as a hex string and returns the corresponding numeric value. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. print hex '0xAf'; # p...
    perldoc.perl.org/functions/hex.txt
    Registered: Tue Jul 08 18:47:51 UTC 2025
    - 938 bytes
    - Viewed (0)
  4. chr.txt

    =over =item chr NUMBER X<chr> X<character> X<ASCII> X<Unicode> =item chr Returns the character represented by that NUMBER in the character set. For example, C<chr(65)> is C<"A"> in either ASCII or ...
    perldoc.perl.org/functions/chr.txt
    Registered: Tue Jul 08 17:23:32 UTC 2025
    - 711 bytes
    - Viewed (0)
  5. log.txt

    =over =item log EXPR X<log> X<logarithm> X<e> X<ln> X<base> =item log Returns the natural logarithm (base I<e>) of EXPR. If EXPR is omitted, returns the log of L<C<$_>|perlvar/$_>. To get the log o...
    perldoc.perl.org/functions/log.txt
    Registered: Tue Jul 08 15:36:00 UTC 2025
    - 495 bytes
    - Viewed (0)
  6. eval.txt

    =over =item eval EXPR X<eval> X<try> X<catch> X<evaluate> X<parse> X<execute> X<error, handling> X<exception, handling> =item eval BLOCK =item eval C<eval> in all its forms is used to execute a lit...
    perldoc.perl.org/functions/eval.txt
    Registered: Tue Jul 08 22:19:41 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. use.txt

    =over =item use Module VERSION LIST X<use> X<module> X<import> =item use Module VERSION =item use Module LIST =item use Module Imports some semantics into the current package from the named module,...
    perldoc.perl.org/functions/use.txt
    Registered: Tue Jul 08 21:23:15 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  8. alarm.txt

    =over =item alarm SECONDS X<alarm> X<SIGALRM> X<timer> =item alarm Arranges to have a SIGALRM delivered to this process after the specified number of wallclock seconds has elapsed. If SECONDS is no...
    perldoc.perl.org/functions/alarm.txt
    Registered: Tue Jul 08 22:36:52 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  9. ioctl.txt

    =over =item ioctl FILEHANDLE,FUNCTION,SCALAR X<ioctl> Implements the L<ioctl(2)> function. You'll probably first have to say require "sys/ioctl.ph"; # probably in # $Config{archlib}/sys/ioctl.ph to...
    perldoc.perl.org/functions/ioctl.txt
    Registered: Tue Jul 08 20:27:15 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  10. bless.txt

    =over =item bless REF,CLASSNAME X<bless> =item bless REF C<bless> tells Perl to mark the item referred to by C<REF> as an object in a package. The two-argument version of C<bless> is always prefera...
    perldoc.perl.org/functions/bless.txt
    Registered: Wed Jul 09 00:06:15 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top