<P>Any omitted or empty regular expressions will default to ``.*''.
Please note that each regular expression given is implicitly
anchored by adding ``^'' and ``$'' to the beginning and end. Also, if a
given regular expression starts with a ``!'' character, then the
expression is <EM>negated</EM> (so <CODE>!foo</CODE> would match anything <EM>except</EM>
<CODE>foo</CODE>).</P>
<P>Some example section specifications follow.</P>
<DL>
<DT><STRONG><A NAME="item_Match_the_NAME_and_SYNOPSIS_sections_and_all_of_th">Match the <CODE>NAME</CODE> and <CODE>SYNOPSIS</CODE> sections and all of their subsections:</A></STRONG><BR>
<DD>
<CODE>NAME|SYNOPSIS</CODE>
<P></P>
<DT><STRONG><A NAME="item_Match_only_the_Question_and_Answer_subsections_of_">Match only the <CODE>Question</CODE> and <CODE>Answer</CODE> subsections of the <CODE>DESCRIPTION</CODE>
section:</A></STRONG><BR>
<DD>
<CODE>DESCRIPTION/Question|Answer</CODE>
<P></P>
<DT><STRONG><A NAME="item_Match_the_Comments_subsection_of_all_sections%3A">Match the <CODE>Comments</CODE> subsection of <EM>all</EM> sections:</A></STRONG><BR>
<DD>
<CODE>/Comments</CODE>
<P></P>
<DT><STRONG><A NAME="item_Match_all_subsections_of_DESCRIPTION_except_for_Co">Match all subsections of <CODE>DESCRIPTION</CODE> <EM>except</EM> for <CODE>Comments</CODE>:</A></STRONG><BR>
<DD>
<CODE>DESCRIPTION/!Comments</CODE>
<P></P>
<DT><STRONG><A NAME="item_Match_the_DESCRIPTION_section_but_do_not_match_any">Match the <CODE>DESCRIPTION</CODE> section but do <EM>not</EM> match any of its subsections:</A></STRONG><BR>
<DD>
<CODE>DESCRIPTION/!.+</CODE>
<P></P>
<DT><STRONG><A NAME="item_Match_all_top_level_sections_but_none_of_their_sub">Match all top level sections but none of their subsections:</A></STRONG><BR>