Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

Results 111 - 120 of 2,354 for host:perldoc.perl.org (0.02 sec)

  1. $'.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)
  2. $`.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)
  3. @_.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)
  4. ${^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)
  5. %^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)
  6. ${^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)
  7. $#.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)
  8. $,.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)
  9. ${^RE_DEBUG_FLAGS}.txt

    =over =item ${^RE_DEBUG_FLAGS} X<${^RE_DEBUG_FLAGS}> The current value of the regex debugging flags. Set to 0 for no debug output even when the C<re 'debug'> module is loaded. See L<re> for details...
    perldoc.perl.org/variables/${^RE_DEBUG_FLAGS}.txt
    Registered: Wed Apr 24 02:19:02 UTC 2024
    - 251 bytes
    - Viewed (0)
  10. @ARGV.txt

    =over =item @ARGV X<@ARGV> The array C<@ARGV> contains the command-line arguments intended for the script. C<$#ARGV> is generally the number of arguments minus one, because C<$ARGV[0]> is the first...
    perldoc.perl.org/variables/@ARGV.txt
    Registered: Wed Apr 24 00:50:56 UTC 2024
    - 293 bytes
    - Viewed (0)
Back to top