- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 111 - 120 of 1,304 for label:perl (0.03 sec)
-
sprintf.txt
=over =item sprintf FORMAT, LIST X<sprintf> Returns a string formatted by the usual L<C<printf>|/printf FILEHANDLE FORMAT, LIST> conventions of the C library function L<C<sprintf>|/sprintf FORMAT, ...perldoc.perl.org/functions/sprintf.txtRegistered: Wed Apr 09 22:44:57 UTC 2025 - 13.8K bytes - Viewed (0) -
splice.txt
=over =item splice ARRAY,OFFSET,LENGTH,LIST X<splice> =item splice ARRAY,OFFSET,LENGTH =item splice ARRAY,OFFSET =item splice ARRAY Removes the elements designated by OFFSET and LENGTH from an arra...perldoc.perl.org/functions/splice.txtRegistered: Wed Apr 09 22:49:22 UTC 2025 - 1.7K bytes - Viewed (0) -
push.txt
=over =item push ARRAY,LIST X<push> X<stack> Adds one or more items to the B<end> of an array. my @animals = ("cat"); push(@animals, "mouse"); # ("cat", "mouse") my @colors = ("red"); push(@colors,...perldoc.perl.org/functions/push.txtRegistered: Wed Apr 09 19:53:51 UTC 2025 - 668 bytes - Viewed (0) -
lcfirst.txt
=over =item lcfirst EXPR X<lcfirst> X<lowercase> =item lcfirst Returns the value of EXPR with the first character lowercased. This is the internal function implementing the C<\l> escape in double-q...perldoc.perl.org/functions/lcfirst.txtRegistered: Wed Apr 09 22:37:20 UTC 2025 - 376 bytes - Viewed (0) -
syswrite.txt
=over =item syswrite FILEHANDLE,SCALAR,LENGTH,OFFSET X<syswrite> =item syswrite FILEHANDLE,SCALAR,LENGTH =item syswrite FILEHANDLE,SCALAR Attempts to write LENGTH bytes of data from variable SCALAR...perldoc.perl.org/functions/syswrite.txtRegistered: Thu Apr 10 08:20:39 UTC 2025 - 1.7K bytes - Viewed (0) -
exit.txt
=over =item exit EXPR X<exit> X<terminate> X<abort> =item exit Evaluates EXPR and exits immediately with that value. Example: my $ans = <STDIN>; exit 0 if $ans =~ /^[Xx]/; See also L<C<die>|/die LI...perldoc.perl.org/functions/exit.txtRegistered: Thu Apr 10 11:27:03 UTC 2025 - 1.4K bytes - Viewed (0) -
__CLASS__.txt
=over =item __CLASS__ X<__CLASS__> Invoked within a L<C<method>|/method NAME BLOCK>, or similar location, such as a field initializer expression, this token returns the name of the class of the inv...perldoc.perl.org/functions/__CLASS__.txtRegistered: Thu Apr 10 07:23:51 UTC 2025 - 925 bytes - Viewed (0) -
prototype.txt
=over =item prototype FUNCTION X<prototype> =item prototype Returns the prototype of a function as a string (or L<C<undef>|/undef EXPR> if the function has no prototype). FUNCTION is a reference to...perldoc.perl.org/functions/prototype.txtRegistered: Thu Apr 10 09:51:57 UTC 2025 - 745 bytes - Viewed (0) -
setpriority.txt
=over =item setpriority WHICH,WHO,PRIORITY X<setpriority> X<priority> X<nice> X<renice> Sets the current priority for a process, a process group, or a user. (See L<setpriority(2)>.) Raises an excep...perldoc.perl.org/functions/setpriority.txtRegistered: Thu Apr 10 07:08:51 UTC 2025 - 435 bytes - Viewed (0) -
getpgrp.txt
=over =item getpgrp PID X<getpgrp> X<group> Returns the current process group for the specified PID. Use a PID of C<0> to get the current process group for the current process. Will raise an except...perldoc.perl.org/functions/getpgrp.txtRegistered: Thu Apr 10 08:41:03 UTC 2025 - 478 bytes - Viewed (0)