Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1361 - 1370 of 3,197 for filetype:txt (0.09 sec)

  1. @ .txt

    =over =item @LAST_MATCH_END =item @+ X<@+> X<@LAST_MATCH_END> This array holds the offsets of the ends of the last successful match and any matching capture buffers that the pattern contains. (See ...
    perldoc.perl.org/variables/@ .txt
    Registered: Tue Nov 19 04:33:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. $<digits> ($1, $2, ...).txt

    =over =item $<I<digits>> ($1, $2, ...) X<$1> X<$2> X<$3> X<$I<digits>> Contains the subpattern from the corresponding set of capturing parentheses from the last successful pattern match in the curr...
    perldoc.perl.org/variables/$<digits> ($1, $2, ...).txt
    Registered: Tue Nov 19 01:41:56 UTC 2024
    - 511 bytes
    - Viewed (0)
  3. $ .txt

    =over =item $LAST_PAREN_MATCH =item $+ X<$+> X<$LAST_PAREN_MATCH> The text matched by the highest used capture group of the last successful search pattern. (See L</Scoping Rules of Regex Variables>...
    perldoc.perl.org/variables/$ .txt
    Registered: Tue Nov 19 01:26:12 UTC 2024
    - 586 bytes
    - Viewed (0)
  4. ${^PREMATCH}.txt

    =over =item ${^PREMATCH} X<${^PREMATCH}> It is only guaranteed to return a defined value when the pattern was executed with the C</p> modifier. This is similar to C<$`> ($PREMATCH) except that to u...
    perldoc.perl.org/variables/${^PREMATCH}.txt
    Registered: Tue Nov 19 01:19:48 UTC 2024
    - 492 bytes
    - Viewed (0)
  5. ${^LAST_SUCCESSFUL_PATTERN}.txt

    =over =item ${^LAST_SUCCESSFUL_PATTERN} The last successful pattern that matched in the current scope. The empty pattern defaults to matching to this. For instance: if (m/foo/ || m/bar/) { s//BLAH/...
    perldoc.perl.org/variables/${^LAST_SUCCESSFUL_PATTERN}.txt
    Registered: Tue Nov 19 02:22:51 UTC 2024
    - 435 bytes
    - Viewed (0)
  6. Unicode::Collate::CJK::Stroke.txt

    package Unicode::Collate::CJK::Stroke; use 5.006; use strict; use warnings; our $VERSION = '1.31'; my %u2p; my $wt = 0x8000; while (<DATA>) { last if /^__END__/; my @c = split; for my $c (@c) { nex...
    perldoc.perl.org/Unicode::Collate::CJK::Stroke.txt
    Registered: Mon Nov 18 21:13:16 UTC 2024
    - 118.8K bytes
    - Viewed (0)
  7. %SIG.txt

    =over =item %SIG X<%SIG> The hash C<%SIG> contains signal handlers for signals. For example: sub handler { # 1st argument is signal name my($sig) = @_; print "Caught a SIG$sig--shutting down\n"; cl...
    perldoc.perl.org/variables/%SIG.txt
    Registered: Tue Nov 19 05:54:31 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. $$.txt

    =over =item $PROCESS_ID =item $PID =item $$ X<$$> X<$PID> X<$PROCESS_ID> The process number of the Perl running this script. Though you I<can> set this variable, doing so is generally discouraged, ...
    perldoc.perl.org/variables/$$.txt
    Registered: Tue Nov 19 06:07:01 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. $INC.txt

    =over =item $INC X<$INC> As of 5.37.7 when an C<@INC> hook is executed the index of the C<@INC> array that holds the hook will be localized into the C<$INC> variable. When the hook returns the inte...
    perldoc.perl.org/variables/$INC.txt
    Registered: Tue Nov 19 05:28:00 UTC 2024
    - 801 bytes
    - Viewed (0)
  10. %INC.txt

    =over =item %INC X<%INC> The hash C<%INC> contains entries for each filename included via the C<do>, C<require>, or C<use> operators. The key is the filename you specified (with module names conver...
    perldoc.perl.org/variables/%INC.txt
    Registered: Tue Nov 19 05:21:20 UTC 2024
    - 681 bytes
    - Viewed (0)
Back to top