Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: ใƒ†ใ‚นใƒˆ test

Results 51 - 60 of 790 for host:perldoc.perl.org (0.01 sec)

  1. podchecker.txt

    #!/home/centos/perldoc-browser/perls/5.38.2/bin/perl eval 'exec perl -S $0 "$@"' if 0; ########## # podchecker -- command to invoke the podchecker function in Pod::Checker # # Copyright (c) 1998-20...
    perldoc.perl.org/podchecker.txt
    Registered: Thu May 16 13:24:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. Time::tm.txt

    package Time::tm; use strict; our $VERSION = '1.00'; use Class::Struct qw(struct); struct('Time::tm' => [ map { $_ => '$' } qw{ sec min hour mday mon year wday yday isdst } ]); 1; __END__ =head1 NA...
    perldoc.perl.org/Time::tm.txt
    Registered: Thu May 16 10:25:33 UTC 2024
    - 691 bytes
    - Viewed (0)
  3. reverse.txt

    =over =item reverse LIST X<reverse> X<rev> X<invert> In list context, returns a list value consisting of the elements of LIST in the opposite order. In scalar context, concatenates the elements of ...
    perldoc.perl.org/functions/reverse.txt
    Registered: Sat May 11 05:49:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. chop.txt

    =over =item chop VARIABLE X<chop> =item chop( LIST ) =item chop Chops off the last character of a string and returns the character chopped. It is much more efficient than C<s/.$//s> because it neit...
    perldoc.perl.org/functions/chop.txt
    Registered: Sat May 11 04:34:46 UTC 2024
    - 785 bytes
    - Viewed (0)
  5. keys.txt

    =over =item keys HASH X<keys> X<key> =item keys ARRAY Called in list context, returns a list consisting of all the keys of the named hash, or in Perl 5.12 or later only, the indices of an array. Pe...
    perldoc.perl.org/functions/keys.txt
    Registered: Sat May 11 07:40:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. values.txt

    =over =item values HASH X<values> =item values ARRAY In list context, returns a list consisting of all the values of the named hash. In Perl 5.12 or later only, will also return a list of the value...
    perldoc.perl.org/functions/values.txt
    Registered: Sat May 11 06:27:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. unshift.txt

    =over =item unshift ARRAY,LIST X<unshift> Add one or more elements to the B<beginning> of an array. This is the opposite of a L<C<shift>|/shift ARRAY>. my @animals = ("cat"); unshift(@animals, "mou...
    perldoc.perl.org/functions/unshift.txt
    Registered: Sat May 11 07:18:26 UTC 2024
    - 945 bytes
    - Viewed (0)
  8. index.txt

    =over =item index STR,SUBSTR,POSITION X<index> X<indexOf> X<InStr> =item index STR,SUBSTR The index function searches for one string within another, but without the wildcard-like behavior of a full...
    perldoc.perl.org/functions/index.txt
    Registered: Sat May 11 06:47:36 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. pop.txt

    =over =item pop ARRAY X<pop> X<stack> =item pop Removes and returns the B<last> element of the array, shortening the array by one element. my @arr = ('cat', 'dog', 'mouse'); my $item = pop(@arr); #...
    perldoc.perl.org/functions/pop.txt
    Registered: Sat May 11 10:18:12 UTC 2024
    - 902 bytes
    - Viewed (0)
  10. int.txt

    =over =item int EXPR X<int> X<integer> X<truncate> X<trunc> X<floor> =item int Returns the integer portion of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. You should not use this function fo...
    perldoc.perl.org/functions/int.txt
    Registered: Sat May 11 08:48:32 UTC 2024
    - 760 bytes
    - Viewed (0)
Back to top