Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1321 - 1330 of 2,253 for filetype:txt (0.04 sec)

  1. 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: Mon Nov 04 16:30:31 UTC 2024
    - 787 bytes
    - Viewed (0)
  2. 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: Mon Nov 04 16:06:46 UTC 2024
    - 599 bytes
    - Viewed (0)
  3. 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: Mon Nov 04 15:22:49 UTC 2024
    - 455 bytes
    - Viewed (0)
  4. readlink.txt

    =over =item readlink EXPR X<readlink> =item readlink Returns the value of a symbolic link, if symbolic links are implemented. If not, raises an exception. If there is a system error, returns the un...
    perldoc.perl.org/functions/readlink.txt
    Registered: Mon Nov 04 14:15:35 UTC 2024
    - 349 bytes
    - Viewed (0)
  5. 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: Mon Nov 04 14:53:30 UTC 2024
    - 319 bytes
    - Viewed (0)
  6. split.txt

    =over =item split /PATTERN/,EXPR,LIMIT X<split> =item split /PATTERN/,EXPR =item split /PATTERN/ =item split Splits the string EXPR into a list of strings and returns the list in list context, or t...
    perldoc.perl.org/functions/split.txt
    Registered: Mon Nov 04 17:09:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. pack.txt

    =over =item pack TEMPLATE,LIST X<pack> Takes a LIST of values and converts it into a string using the rules given by the TEMPLATE. The resulting string is the concatenation of the converted values....
    perldoc.perl.org/functions/pack.txt
    Registered: Mon Nov 04 20:02:45 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. feature.txt

    # -*- mode: Perl; buffer-read-only: t -*- # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! # This file is built by regen/feature.pl. # Any changes made here will be lost! package feature; our $VERSION = '1....
    perldoc.perl.org/feature.txt
    Registered: Mon Nov 04 21:40:51 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. setsockopt.txt

    =over =item setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL X<setsockopt> Sets the socket option requested. Returns L<C<undef>|/undef EXPR> on error. Use integer constants provided by the L<C<Socket>|Socket...
    perldoc.perl.org/functions/setsockopt.txt
    Registered: Tue Nov 05 01:35:19 UTC 2024
    - 604 bytes
    - Viewed (0)
  10. exec.txt

    =over =item exec LIST X<exec> X<execute> =item exec PROGRAM LIST The L<C<exec>|/exec LIST> function executes a system command I<and never returns>; use L<C<system>|/system LIST> instead of L<C<exec...
    perldoc.perl.org/functions/exec.txt
    Registered: Tue Nov 05 02:48:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top