Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 741 - 750 of 1,302 for label:perl (0.03 sec)

  1. perlrequick.txt

    =head1 NAME perlrequick - Perl regular expressions quick start =head1 DESCRIPTION This page covers the very basics of understanding, creating and using regular expressions ('regexes') in Perl. =hea...
    perldoc.perl.org/perlrequick.txt
    Registered: Tue Nov 19 18:27:48 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. perlunifaq.txt

    =head1 NAME perlunifaq - Perl Unicode FAQ =head1 Q and A This is a list of questions and answers about Unicode in Perl, intended to be read after L<perlunitut>. =head2 perlunitut isn't really a Uni...
    perldoc.perl.org/perlunifaq.txt
    Registered: Tue Nov 19 18:29:48 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. perlunitut.txt

    =head1 NAME perlunitut - Perl Unicode Tutorial =head1 DESCRIPTION The days of just flinging strings around are over. It's well established that modern programs need to be capable of communicating f...
    perldoc.perl.org/perlunitut.txt
    Registered: Tue Nov 19 13:19:45 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. 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: Thu Nov 21 01:25:28 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. 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: Thu Nov 21 01:38:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. goto.txt

    =over =item goto LABEL X<goto> X<jump> X<jmp> =item goto EXPR =item goto &NAME The C<goto LABEL> form finds the statement labeled with LABEL and resumes execution there. It can't be used to get out...
    perldoc.perl.org/functions/goto.txt
    Registered: Wed Nov 20 22:04:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. 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.txt
    Registered: Wed Nov 20 23:04:58 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. 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.txt
    Registered: Thu Nov 21 01:04:39 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. 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: Thu Nov 21 01:31:59 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. utime.txt

    =over =item utime LIST X<utime> Changes the access and modification times on each file of a list of files. The first two elements of the list must be the NUMERIC access and modification times, in t...
    perldoc.perl.org/functions/utime.txt
    Registered: Thu Nov 21 00:09:12 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top