- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 1841 - 1850 of 2,397 for filetype:txt (0.09 sec)
-
perlfaq6.txt
=head1 NAME perlfaq6 - Regular Expressions =head1 VERSION version 5.20240218 =head1 DESCRIPTION This section is surprisingly small because the rest of the FAQ is littered with answers involving reg...perldoc.perl.org/perlfaq6.txtRegistered: Tue Nov 05 22:15:32 UTC 2024 - 38.6K bytes - Viewed (0) -
perlunicook.txt
=encoding utf8 =head1 NAME perlunicook - cookbookish examples of handling Unicode in Perl =head1 DESCRIPTION This manpage contains short recipes demonstrating how to handle common Unicode operation...perldoc.perl.org/perlunicook.txtRegistered: Wed Nov 06 00:19:32 UTC 2024 - 24.8K 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: Mon Nov 04 21:31:25 UTC 2024 - 4.1K bytes - Viewed (0) -
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.txtRegistered: Mon Nov 04 13:18:18 UTC 2024 - 3.7K 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: Mon Nov 04 16:50:02 UTC 2024 - 3.2K bytes - Viewed (0) -
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.txtRegistered: Mon Nov 04 15:07:47 UTC 2024 - 2.6K bytes - Viewed (0) -
umask.txt
=over =item umask EXPR X<umask> =item umask Sets the umask for the process to EXPR and returns the previous value. If EXPR is omitted, merely returns the current umask. The Unix permission C<rwxr-x...perldoc.perl.org/functions/umask.txtRegistered: Mon Nov 04 19:29:37 UTC 2024 - 2.1K bytes - Viewed (0) -
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.txtRegistered: Mon Nov 04 20:43:25 UTC 2024 - 945 bytes - Viewed (0) -
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.txtRegistered: Mon Nov 04 22:40:59 UTC 2024 - 1K 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: Mon Nov 04 22:34:12 UTC 2024 - 785 bytes - Viewed (0)