Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test ใƒ†ใ‚นใƒˆ

Results 51 - 60 of 1,172 for label:perl (0.02 sec)

  1. perlrecharclass.txt

    =head1 NAME X<character class> perlrecharclass - Perl Regular Expression Character Classes =head1 DESCRIPTION The top level documentation about Perl regular expressions is found in L<perlre>. This ...
    perldoc.perl.org/perlrecharclass.txt
    Registered: Fri May 03 18:43:39 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  2. vec.txt

    =over =item vec EXPR,OFFSET,BITS X<vec> X<bit> X<bit vector> Treats the string in EXPR as a bit vector made up of elements of width BITS and returns the value of the element specified by OFFSET as ...
    perldoc.perl.org/functions/vec.txt
    Registered: Sat May 04 06:01:01 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. flock.txt

    =over =item flock FILEHANDLE,OPERATION X<flock> X<lock> X<locking> Calls L<flock(2)>, or an emulation of it, on FILEHANDLE. Returns true for success, false on failure. Produces a fatal error if use...
    perldoc.perl.org/functions/flock.txt
    Registered: Sat May 04 05:36:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. glob.txt

    =over =item glob EXPR X<glob> X<wildcard> X<filename, expansion> X<expand> =item glob In list context, returns a (possibly empty) list of filename expansions on the value of EXPR such as the Unix s...
    perldoc.perl.org/functions/glob.txt
    Registered: Sat May 04 10:51:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. seek.txt

    =over =item seek FILEHANDLE,POSITION,WHENCE X<seek> X<fseek> X<filehandle, position> Sets FILEHANDLE's position, just like the L<fseek(3)> call of C C<stdio>. FILEHANDLE may be an expression whose ...
    perldoc.perl.org/functions/seek.txt
    Registered: Sat May 04 08:28:26 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. next.txt

    =over =item next LABEL X<next> X<continue> =item next EXPR =item next The L<C<next>|/next LABEL> command is like the C<continue> statement in C; it starts the next iteration of the loop: LINE: whil...
    perldoc.perl.org/functions/next.txt
    Registered: Sat May 04 10:03:54 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. formline.txt

    =over =item formline PICTURE,LIST X<formline> This is an internal function used by L<C<format>|/format>s, though you may call it, too. It formats (see L<perlform>) a list of values according to the...
    perldoc.perl.org/functions/formline.txt
    Registered: Sat May 04 07:01:02 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. my.txt

    =over =item my VARLIST X<my> =item my TYPE VARLIST =item my VARLIST : ATTRS =item my TYPE VARLIST : ATTRS A L<C<my>|/my VARLIST> declares the listed variables to be local (lexically) to the enclosi...
    perldoc.perl.org/functions/my.txt
    Registered: Sat May 04 08:07:24 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. scalar.txt

    =over =item scalar EXPR X<scalar> X<context> Forces EXPR to be interpreted in scalar context and returns the value of EXPR. my @counts = ( scalar @a, scalar @b, scalar @c ); There is no equivalent ...
    perldoc.perl.org/functions/scalar.txt
    Registered: Sat May 04 06:31:37 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. seekdir.txt

    =over =item seekdir DIRHANDLE,POS X<seekdir> Sets the current position for the L<C<readdir>|/readdir DIRHANDLE> routine on DIRHANDLE. POS must be a value returned by L<C<telldir>|/telldir DIRHANDLE...
    perldoc.perl.org/functions/seekdir.txt
    Registered: Sat May 04 10:19:37 UTC 2024
    - 354 bytes
    - Viewed (0)
Back to top