Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3121 - 3130 of 3,197 for filetype:txt (0.07 sec)

  1. 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.txt
    Registered: Tue Nov 26 21:05:52 UTC 2024
    - 902 bytes
    - Viewed (0)
  2. 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.txt
    Registered: Tue Nov 26 20:21:15 UTC 2024
    - 785 bytes
    - Viewed (0)
  3. 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.txt
    Registered: Wed Nov 27 00:08:35 UTC 2024
    - 713 bytes
    - Viewed (0)
  4. 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 163
    perldoc.perl.org/functions/closedir.txt
    Registered: Tue Nov 26 18:08:59 UTC 2024
    - 163 bytes
    - Viewed (0)
  5. 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.txt
    Registered: Wed Nov 27 03:15:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. 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.txt
    Registered: Wed Nov 27 05:22:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. 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.txt
    Registered: Wed Nov 27 07:11:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. 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.txt
    Registered: Wed Nov 27 05:31:14 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. 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.txt
    Registered: Wed Nov 27 05:46:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. 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.txt
    Registered: Wed Nov 27 06:28:54 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top