Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1101 - 1110 of 3,443 for filetype:txt (0.06 sec)

  1. 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.txt
    Registered: Sun Oct 26 09:16:02 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. 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.txt
    Registered: Sun Oct 26 08:40:19 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  3. shift.txt

    =over =item shift ARRAY X<shift> =item shift Removes and returns the B<first> element of an array. This shortens the array by one and moves everything down. my @arr = ('cat', 'dog'); my $item = shi...
    perldoc.perl.org/functions/shift.txt
    Registered: Sun Oct 26 09:36:40 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  4. 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.txt
    Registered: Sun Oct 26 08:32:29 UTC 2025
    - 628 bytes
    - Viewed (0)
  5. atan2.txt

    =over =item atan2 Y,X X<atan2> X<arctangent> X<tan> X<tangent> Returns the arctangent of Y/X in the range -PI to PI. For the tangent operation, you may use the L<C<Math::Trig::tan>|Math::Trig/B<tan...
    perldoc.perl.org/functions/atan2.txt
    Registered: Sun Oct 26 11:42:40 UTC 2025
    - 449 bytes
    - Viewed (0)
  6. Math::BigFloat.txt

    package Math::BigFloat; # # Mike grinned. 'Two down, infinity to go' - Mike Nostrus in 'Before and After' # # The following hash values are used internally: # # sign : "+", "-", "+inf", "-inf", or ...
    perldoc.perl.org/Math::BigFloat.txt
    Registered: Sat Oct 25 03:08:19 UTC 2025
    - 253.6K bytes
    - Viewed (0)
  7. perlfaq8.txt

    =pod =encoding UTF-8 =head1 NAME perlfaq8 - System Interaction =head1 VERSION version 5.20250619 =head1 DESCRIPTION This section of the Perl FAQ covers questions involving operating system interact...
    perldoc.perl.org/perlfaq8.txt
    Registered: Fri Oct 24 23:15:46 UTC 2025
    - 48.7K bytes
    - Viewed (0)
  8. perlfaq7.txt

    =pod =encoding UTF-8 =head1 NAME perlfaq7 - General Perl Language Issues =head1 VERSION version 5.20250619 =head1 DESCRIPTION This section deals with general Perl language issues that don't clearly...
    perldoc.perl.org/perlfaq7.txt
    Registered: Fri Oct 24 23:33:01 UTC 2025
    - 36.9K bytes
    - Viewed (0)
  9. @{^CAPTURE}.txt

    =over =item @{^CAPTURE} X<@{^CAPTURE}> X<@^CAPTURE> An array which exposes the contents of the capture buffers, if any, of the last successful pattern match, not counting patterns matched in nested...
    perldoc.perl.org/variables/@{^CAPTURE}.txt
    Registered: Sat Oct 25 07:54:22 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  10. $^N.txt

    =over =item $LAST_SUBMATCH_RESULT =item $^N X<$^N> X<$LAST_SUBMATCH_RESULT> The text matched by the used group most-recently closed (i.e. the group with the rightmost closing parenthesis) of the la...
    perldoc.perl.org/variables/$^N.txt
    Registered: Sat Oct 25 05:47:42 UTC 2025
    - 1009 bytes
    - Viewed (0)
Back to top