Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3281 - 3290 of 3,812 for filetype:txt (0.19 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: Fri Apr 18 12:29:48 UTC 2025
    - 599 bytes
    - Viewed (0)
  2. 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: Fri Apr 18 16:55:23 UTC 2025
    - 26K bytes
    - Viewed (0)
  3. 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: Fri Apr 18 16:44:29 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  4. lc.txt

    =over =item lc EXPR X<lc> X<lowercase> =item lc Returns a lowercased version of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. my $str = lc("Perl is GREAT"); # "perl is great" What gets return...
    perldoc.perl.org/functions/lc.txt
    Registered: Fri Apr 18 17:43:37 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  5. continue.txt

    =over =item continue BLOCK X<continue> =item continue When followed by a BLOCK, L<C<continue>|/continue BLOCK> is actually a flow control statement rather than a function. If there is a L<C<continu...
    perldoc.perl.org/functions/continue.txt
    Registered: Fri Apr 18 17:24:46 UTC 2025
    - 1.9K 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: Fri Apr 18 17:52:41 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  7. 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: Fri Apr 18 17:29:03 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. 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: Fri Apr 18 13:53:25 UTC 2025
    - 787 bytes
    - Viewed (0)
  9. 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: Fri Apr 18 17:08:37 UTC 2025
    - 455 bytes
    - Viewed (0)
  10. Test2::Tools::Mock.txt

    package Test2::Tools::Mock; use strict; use warnings; use Carp qw/croak/; use Scalar::Util qw/blessed reftype weaken/; use Test2::Util qw/try/; use Test2::Util::Sub qw/gen_accessor gen_reader gen_w...
    perldoc.perl.org/Test2::Tools::Mock.txt
    Registered: Tue Apr 22 22:24:50 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top