=pod
I>
=head2 Predefined Names
=over 8
=item *
B<< $_ >> - The default input and pattern-searching space
=back
=over 8
=item *
B<< $a >>, B<< $b >> - Special package variables when using sort(), see L
=back
=over 8
=item *
B<< $> ($1, $2, ...) >> - Contains the subpattern from the corresponding set of capturing
parentheses from the last successful pattern match, not counting patterns
matched in nested blocks that have been exited already
=item *
B<< $& >> - The string matched by the last successful pattern match (not counting
any matches hidden within a BLOCK or eval() enclosed by the current
BLOCK)
=item *
B<< ${^MATCH} >> - This is similar to C<$&> (C<$MATCH>) except that it does not incur the
performance penalty associated with that variable, and is only guaranteed
to return a defined value when the pattern was compiled or executed with
the C
modifier
=item *
B<< $` >> - The string preceding whatever was matched by the last successful
pattern match (not counting any matches hidden within a BLOCK or eval
enclosed by the current BLOCK)
=item *
B<< ${^PREMATCH} >> - This is similar to C<$`> ($PREMATCH) except that it does not incur the
performance penalty associated with that variable, and is only guaranteed
to return a defined value when the pattern was compiled or executed with
the C modifier
=item *
B<< $' >> - The string following whatever was matched by the last successful
pattern match (not counting any matches hidden within a BLOCK or eval()
enclosed by the current BLOCK)
=item *
B<< ${^POSTMATCH} >> - This is similar to C<$'> (C<$POSTMATCH>) except that it does not incur the
performance penalty associated with that variable, and is only guaranteed
to return a defined value when the pattern was compiled or executed with
the C modifier
=item *
B<< $+ >> - The text matched by the last bracket of the last successful search pattern
=item *
B<< $^N >> - The text matched by the used group most-recently closed (i.e. the group
with the rightmost closing parenthesis) of the last successful search
pattern
=item *
B<< @+ >> - This array holds the offsets of the ends of the last successful
submatches in the currently active dynamic scope
=item *
B<< %+ >> - Similar to C<@+>, the C<%+> hash allows access to the named capture
buffers, should they exist, in the last successful match in the
currently active dynamic scope
=item *
B<< $. >> - Current line number for the last filehandle accessed
=item *
B<< $/ >> - The input record separator, newline by default
=item *
B<< $| >> - If set to nonzero, forces a flush right away and after every write
or print on the currently selected output channel
=item *
B<< $, >> - The output field separator for the print operator
=item *
B<< $\ >> - The output record separator for the print operator
=item *
B<< $" >> - This is like C<$,> except that it applies to array and slice values
interpolated into a double-quoted string (or similar interpreted
string)
=item *
B<< $; >> - The subscript separator for multidimensional array emulation
=item *
B<< $% >> - The current page number of the currently selected output channel
=item *
B<< $= >> - The current page length (printable lines) of the currently selected
output channel
=item *
B<< $- >> - The number of lines left on the page of the currently selected output
channel
=item *
B<< @- >> - $-[0] is the offset of the start of the last successful match
=item *
B<< %- >> - Similar to C<%+>, this variable allows access to the named capture buffers
in the last successful match in the currently active dynamic scope
=item *
B<< $~ >> - The name of the current report format for the currently selected output
channel
=item *
B<< $^ >> - The name of the current top-of-page format for the currently selected
output channel
=item *
B<< $: >> - The current set of characters after which a string may be broken to
fill continuation fields (starting with ^) in a format
=item *
B<< $^L >> - What formats output as a form feed
=item *
B<< $^A >> - The current value of the write() accumulator for format() lines
=item *
B<< $? >> - The status returned by the last pipe close, backtick (C<``>) command,
successful call to wait() or waitpid(), or from the system()
operator
=item *
B<< ${^CHILD_ERROR_NATIVE} >> - The native status returned by the last pipe close, backtick (C<``>)
command, successful call to wait() or waitpid(), or from the system()
operator
=item *
B<< ${^ENCODING} >> - The I