Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

Results 11 - 20 of 1,172 for label:perl (0.01 sec)

  1. $[.txt

    =over =item $[ X<$[> This variable stores the index of the first element in an array, and of the first character in a substring. The default is 0, but you could theoretically set it to 1 to make Pe...
    perldoc.perl.org/variables/$[.txt
    Registered: Tue Apr 23 22:21:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. %ENV.txt

    =over =item %ENV X<%ENV> The hash C<%ENV> contains your current environment. Setting a value in C<ENV> changes the environment for any child processes you subsequently C<fork()> off. As of v5.18.0,...
    perldoc.perl.org/variables/%ENV.txt
    Registered: Tue Apr 23 19:27:46 UTC 2024
    - 746 bytes
    - Viewed (0)
  3. $'.txt

    =over =item $POSTMATCH =item $' X<$'> X<$POSTMATCH> X<@-> The string following whatever was matched by the last successful pattern match. (See L</Scoping Rules of Regex Variables>). Example: local ...
    perldoc.perl.org/variables/$'.txt
    Registered: Tue Apr 23 20:08:46 UTC 2024
    - 528 bytes
    - Viewed (0)
  4. $`.txt

    =over =item $PREMATCH =item $` X<$`> X<$PREMATCH> The string preceding whatever was matched by the last successful pattern match. (See L</Scoping Rules of Regex Variables>). See L</Performance issu...
    perldoc.perl.org/variables/$`.txt
    Registered: Tue Apr 23 21:45:03 UTC 2024
    - 421 bytes
    - Viewed (0)
  5. @_.txt

    =over =item @ARG =item @_ X<@_> X<@ARG> Within a subroutine the array C<@_> contains the parameters passed to that subroutine. Inside a subroutine, C<@_> is the default array for the array operator...
    perldoc.perl.org/variables/@_.txt
    Registered: Tue Apr 23 20:23:33 UTC 2024
    - 247 bytes
    - Viewed (0)
  6. ${^ENCODING}.txt

    =over =item ${^ENCODING} X<${^ENCODING}> This variable is no longer supported. It used to hold the I<object reference> to the C<Encode> object that was used to convert the source code to Unicode. I...
    perldoc.perl.org/variables/${^ENCODING}.txt
    Registered: Wed Apr 24 01:42:52 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. %^H.txt

    =over =item %^H X<%^H> The C<%^H> hash provides the same scoping semantics as L<C<$^H>|/$^H>. This makes it useful for implementing lexically scoped pragmas. See L<perlpragma>. All the entries are ...
    perldoc.perl.org/variables/%^H.txt
    Registered: Wed Apr 24 00:45:29 UTC 2024
    - 909 bytes
    - Viewed (0)
  8. ${^CHILD_ERROR_NATIVE}.txt

    =over =item ${^CHILD_ERROR_NATIVE} X<$^CHILD_ERROR_NATIVE> The native status returned by the last pipe close, backtick (C<``>) command, successful call to C<wait()> or C<waitpid()>, or from the C<s...
    perldoc.perl.org/variables/${^CHILD_ERROR_NATIVE}.txt
    Registered: Wed Apr 24 01:34:42 UTC 2024
    - 574 bytes
    - Viewed (0)
  9. $#.txt

    =over =item $# X<$#> C<$#> was a variable that could be used to format printed numbers. After a deprecation cycle, its magic was removed in Perl v5.10.0 and using it now triggers a warning: C<$# is...
    perldoc.perl.org/variables/$#.txt
    Registered: Wed Apr 24 01:14:22 UTC 2024
    - 481 bytes
    - Viewed (0)
  10. $,.txt

    =over =item IO::Handle->output_field_separator( EXPR ) =item $OUTPUT_FIELD_SEPARATOR =item $OFS =item $, X<$,> X<$OFS> X<$OUTPUT_FIELD_SEPARATOR> The output field separator for the print operator. ...
    perldoc.perl.org/variables/$,.txt
    Registered: Wed Apr 24 01:28:22 UTC 2024
    - 486 bytes
    - Viewed (0)
Back to top