Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

Results 61 - 70 of 790 for host:perldoc.perl.org (0.01 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. length.txt

    =over =item length EXPR X<length> X<size> =item length Returns the length in I<characters> of the value of EXPR. If EXPR is omitted, returns the length of L<C<$_>|perlvar/$_>. If EXPR is undefined,...
    perldoc.perl.org/functions/length.txt
    Registered: Sat May 11 07:02:25 UTC 2024
    - 713 bytes
    - Viewed (0)
  7. study.txt

    =over =item study SCALAR X<study> =item study At this time, C<study> does nothing. This may change in the future. Prior to Perl version 5.16, it would create an inverted index of all characters tha...
    perldoc.perl.org/functions/study.txt
    Registered: Sat May 11 08:02:45 UTC 2024
    - 476 bytes
    - Viewed (0)
  8. sysopen.txt

    =over =item sysopen FILEHANDLE,FILENAME,MODE X<sysopen> =item sysopen FILEHANDLE,FILENAME,MODE,PERMS Opens the file whose filename is given by FILENAME, and associates it with FILEHANDLE. If FILEHA...
    perldoc.perl.org/functions/sysopen.txt
    Registered: Sat May 11 10:55:01 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. goto.txt

    =over =item goto LABEL X<goto> X<jump> X<jmp> =item goto EXPR =item goto &NAME The C<goto LABEL> form finds the statement labeled with LABEL and resumes execution there. It can't be used to get out...
    perldoc.perl.org/functions/goto.txt
    Registered: Sat May 11 15:07:43 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. print.txt

    =over =item print FILEHANDLE LIST X<print> =item print FILEHANDLE =item print LIST =item print Prints a string or a list of strings. Returns true if successful. FILEHANDLE may be a scalar variable ...
    perldoc.perl.org/functions/print.txt
    Registered: Sat May 11 13:24:51 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top