- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 2461 - 2470 of 6,570 for content_length:[0 TO 9999] (0.08 sec)
-
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.txtRegistered: Tue Feb 18 01:43:53 UTC 2025 - 902 bytes - Viewed (0) -
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.txtRegistered: Tue Feb 18 02:24:44 UTC 2025 - 785 bytes - Viewed (0) -
do.txt
=over =item do BLOCK X<do> X<block> Not really a function. Returns the value of the last command in the sequence of commands indicated by BLOCK. When modified by the C<while> or C<until> loop modif...perldoc.perl.org/functions/do.txtRegistered: Tue Feb 18 09:56:16 UTC 2025 - 3.2K bytes - Viewed (0) -
ref.txt
=over =item ref EXPR X<ref> X<reference> =item ref Examines the value of EXPR, expecting it to be a reference, and returns a string giving information about the reference and the type of referent. ...perldoc.perl.org/functions/ref.txtRegistered: Tue Feb 18 06:30:29 UTC 2025 - 2.6K bytes - Viewed (0) -
utime.txt
=over =item utime LIST X<utime> Changes the access and modification times on each file of a list of files. The first two elements of the list must be the NUMERIC access and modification times, in t...perldoc.perl.org/functions/utime.txtRegistered: Tue Feb 18 07:13:57 UTC 2025 - 1.9K bytes - Viewed (0) -
redo.txt
=over =item redo LABEL X<redo> =item redo EXPR =item redo The L<C<redo>|/redo LABEL> command restarts the loop block without evaluating the conditional again. The L<C<continue>|/continue BLOCK> blo...perldoc.perl.org/functions/redo.txtRegistered: Tue Feb 18 10:40:37 UTC 2025 - 1.8K bytes - Viewed (0) -
last.txt
=over =item last LABEL X<last> X<break> =item last EXPR =item last The L<C<last>|/last LABEL> command is like the C<break> statement in C (as used in loops); it immediately exits the loop in questi...perldoc.perl.org/functions/last.txtRegistered: Tue Feb 18 09:42:58 UTC 2025 - 1.4K bytes - Viewed (0) -
truncate.txt
=over =item truncate FILEHANDLE,LENGTH X<truncate> =item truncate EXPR,LENGTH Truncates the file opened on FILEHANDLE, or named by EXPR, to the specified length. Raises an exception if truncate isn...perldoc.perl.org/functions/truncate.txtRegistered: Tue Feb 18 10:11:29 UTC 2025 - 573 bytes - Viewed (0) -
getppid.txt
=over =item getppid X<getppid> X<parent> X<pid> Returns the process id of the parent process. Note for Linux users: Between v5.8.1 and v5.16.0 Perl would work around non-POSIX thread semantics the ...perldoc.perl.org/functions/getppid.txtRegistered: Tue Feb 18 11:09:53 UTC 2025 - 428 bytes - Viewed (0) -
getpeername.txt
=over =item getpeername SOCKET X<getpeername> X<peer> Returns the packed sockaddr address of the other end of the SOCKET connection. use Socket; my $hersockaddr = getpeername($sock); my ($port, $ia...perldoc.perl.org/functions/getpeername.txtRegistered: Tue Feb 18 07:48:23 UTC 2025 - 356 bytes - Viewed (0)