- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 1991 - 2000 of 2,657 for host:perldoc.perl.org (0.02 sec)
-
perlhaiku.txt
# vim: syntax=pod If you read this file _as_is_, just ignore the funny characters you see. It is written in the POD format (see pod/perlpod.pod) which is specially designed to be readable as is. =h...perldoc.perl.org/perlhaiku.txtRegistered: Fri Jan 23 15:01:14 UTC 2026 - 1.5K bytes - Viewed (0) -
each.txt
=over =item each HASH X<each> X<hash, iterator> =item each ARRAY X<array, iterator> When called on a hash in list context, returns a 2-element list consisting of the key and value for the next elem...perldoc.perl.org/functions/each.txtRegistered: Sat Jan 17 12:04:00 UTC 2026 - 5.7K bytes - Viewed (0) -
continue.txt
=over =item continue BLOCK X<continue> =item continue When followed by a BLOCK, C<continue> is actually a flow control statement rather than a function. If there is a C<continue> BLOCK attached to ...perldoc.perl.org/functions/continue.txtRegistered: Sat Jan 17 15:52:01 UTC 2026 - 1.7K bytes - Viewed (0) -
lock.txt
=over =item lock THING X<lock> This function places an advisory lock on a shared variable or referenced object contained in I<THING> until the lock goes out of scope. The value returned is the scal...perldoc.perl.org/functions/lock.txtRegistered: Sat Jan 17 10:49:11 UTC 2026 - 550 bytes - Viewed (0) -
getpriority.txt
=over =item getpriority WHICH,WHO X<getpriority> X<priority> X<nice> Returns the current priority for a process, a process group, or a user. (See L<getpriority(2)>.) Will raise a fatal exception if...perldoc.perl.org/functions/getpriority.txtRegistered: Sat Jan 17 13:50:44 UTC 2026 - 426 bytes - Viewed (0) -
join.txt
=over =item join EXPR,LIST X<join> Joins the separate strings of LIST into a single string with fields separated by the value of EXPR, and returns that new string. Example: my $rec = join(':', $log...perldoc.perl.org/functions/join.txtRegistered: Sat Jan 17 10:24:12 UTC 2026 - 436 bytes - Viewed (0) -
readlink.txt
=over =item readlink EXPR X<readlink> =item readlink Returns the value of a symbolic link, if symbolic links are implemented. If not, raises an exception. If there is a system error, returns the un...perldoc.perl.org/functions/readlink.txtRegistered: Sat Jan 17 12:26:59 UTC 2026 - 349 bytes - Viewed (0) -
pack.txt
=over =item pack TEMPLATE,LIST X<pack> Takes a LIST of values and converts it into a string using the rules given by the TEMPLATE. The resulting string is the concatenation of the converted values....perldoc.perl.org/functions/pack.txtRegistered: Sat Jan 17 02:26:57 UTC 2026 - 25.9K bytes - Viewed (0) -
split.txt
=over =item split /PATTERN/,EXPR,LIMIT X<split> =item split /PATTERN/,EXPR =item split /PATTERN/ =item split Splits the string EXPR into a list of strings and returns the list in list context, or t...perldoc.perl.org/functions/split.txtRegistered: Fri Jan 16 22:31:24 UTC 2026 - 7.4K bytes - Viewed (0) -
lc.txt
=over =item lc EXPR X<lc> X<lowercase> =item lc Returns a lowercased version of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. my $str = lc("Perl is GREAT"); # "perl is great" What gets return...perldoc.perl.org/functions/lc.txtRegistered: Fri Jan 16 22:44:41 UTC 2026 - 2.1K bytes - Viewed (0)