=pod
I>
=head2 Predefined Names
=over 8
=item *
B> - The default input and pattern-searching space
=back
=over 8
=item *
B>, B> - Special package variables when using sort(), see L
=back
=over 8
=item *
B> >> - Contains the subpattern from the corresponding set of capturing
parentheses from the last 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> - 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> - 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> - The text matched by the last bracket of the last successful search pattern
=item *
B> - 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> - Set to a non-zero integer value to do multi-line matching within a
string, 0 (or undefined) to tell Perl that it can assume that strings
contain a single line, for the purpose of optimizing pattern matches
=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 output format for printed numbers
=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> - 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> - What formats output as a form feed
=item *
B> - 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> - The I