- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 3121 - 3130 of 3,197 for filetype:txt (0.07 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 Nov 26 21:05:52 UTC 2024 - 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 Nov 26 20:21:15 UTC 2024 - 785 bytes - Viewed (0) -
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.txtRegistered: Wed Nov 27 00:08:35 UTC 2024 - 713 bytes - Viewed (0) -
closedir.txt
=over =item closedir DIRHANDLE X<closedir> Closes a directory opened by L<C<opendir>|/opendir DIRHANDLE,EXPR> and returns the success of that system call. =back 163perldoc.perl.org/functions/closedir.txtRegistered: Tue Nov 26 18:08:59 UTC 2024 - 163 bytes - Viewed (0) -
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.txtRegistered: Wed Nov 27 03:15:31 UTC 2024 - 5.9K bytes - Viewed (0) -
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.txtRegistered: Wed Nov 27 05:22:43 UTC 2024 - 4.6K bytes - Viewed (0) -
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.txtRegistered: Wed Nov 27 07:11:19 UTC 2024 - 4.1K bytes - Viewed (0) -
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.txtRegistered: Wed Nov 27 05:31:14 UTC 2024 - 2K bytes - Viewed (0) -
eof.txt
=over =item eof FILEHANDLE X<eof> X<end of file> X<end-of-file> =item eof () =item eof Returns 1 if the next read on FILEHANDLE will return end of file I<or> if FILEHANDLE is not open. FILEHANDLE m...perldoc.perl.org/functions/eof.txtRegistered: Wed Nov 27 05:46:13 UTC 2024 - 2.1K 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: Wed Nov 27 06:28:54 UTC 2024 - 1.4K bytes - Viewed (0)