Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 751 - 760 of 2,621 for host:perldoc.perl.org (0.04 sec)

  1. select.txt

    =over =item select FILEHANDLE X<select> X<filehandle, default> =item select Returns the currently selected filehandle. If FILEHANDLE is supplied, sets the new current default filehandle for output....
    perldoc.perl.org/functions/select.txt
    Registered: Fri Apr 18 10:33:18 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. dump.txt

    =over =item dump LABEL X<dump> X<core> X<undump> =item dump EXPR =item dump This function causes an immediate core dump. See also the B<-u> command-line switch in L<perlrun|perlrun/-u>, which does ...
    perldoc.perl.org/functions/dump.txt
    Registered: Fri Apr 18 09:49:55 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  3. chmod.txt

    =over =item chmod LIST X<chmod> X<permission> X<mode> Changes the permissions of a list of files. The first element of the list must be the numeric mode, which should probably be an octal number, a...
    perldoc.perl.org/functions/chmod.txt
    Registered: Fri Apr 18 10:38:42 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  4. 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: Fri Apr 18 13:10:42 UTC 2025
    - 945 bytes
    - Viewed (0)
  5. 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: Fri Apr 18 11:17:25 UTC 2025
    - 902 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: Fri Apr 18 09:41:11 UTC 2025
    - 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: Fri Apr 18 10:53:17 UTC 2025
    - 476 bytes
    - Viewed (0)
  8. link.txt

    =over =item link OLDFILE,NEWFILE X<link> Creates a new filename linked to the old filename. Returns true for success, false otherwise. Portability issues: L<perlport/link>. =back 183
    perldoc.perl.org/functions/link.txt
    Registered: Fri Apr 18 10:46:25 UTC 2025
    - 183 bytes
    - Viewed (0)
  9. die.txt

    =over =item die LIST X<die> X<throw> X<exception> X<raise> X<$@> X<abort> L<C<die>|/die LIST> raises an exception. Inside an L<C<eval>|/eval EXPR> the exception is stuffed into L<C<$@>|perlvar/$@> ...
    perldoc.perl.org/functions/die.txt
    Registered: Fri Apr 18 16:25:32 UTC 2025
    - 5.9K 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: Fri Apr 18 15:18:22 UTC 2025
    - 2K bytes
    - Viewed (0)
Back to top