1. ? (Question Mark): Matches any single character.
Example: "te?t" would match "text" and "test".
2. * (Asterisk): Matches any sequence of characters (including none).
Example: "doc*" would match "document", "docx", "doctor", etc.
3. [ ] (Square Brackets): Matches any one of the characters enclosed within the brackets.
Example: "[aeiou]" would match any vowel.
4. [! ] (Exclamation Mark within Square Brackets): Matches any character that is not within the brackets.
Example: "[!0-9]" would match any character that is not a digit.
5. ^ (Caret): When placed at the beginning of a bracket expression, it negates the character set.
Example: "[^a-z]" would match any character that is not a lowercase letter.
6. { } (Curly Braces): Specifies a specific number of occurrences of the preceding character or group.
Example: "a{2}" would match "aa".
7. ( ) (Parentheses): Groups characters for use with operators.
Example: "(re)+place" would match "replace", "reemplace", etc.
8. # (Number Sign): Matches any digit (0-9).
Example: "Chapter #" would match "Chapter 1", "Chapter 2", etc.
9. < (Less Than): Matches the beginning of a word.
Example: "<apple" would match "apple" but not "pineapple".
10. > (Greater Than): Matches the end of a word.
Example: "apple>" would match "apple" but not "applesauce".
11. \b (Word Boundary): Matches the position between a word character and a non-word character.
Example: "\bword\b" would match "word" but not "words" or "sword".
12. \t (Tab Character): Matches a tab character.
Example: "Column\t1" would match "Column 1" with a tab in between.
13. ^ (Beginning of Paragraph): Matches the beginning of a paragraph.
Example: "^\w+" would match the first word in each paragraph.
14. $ (End of Paragraph): Matches the end of a paragraph.
Example: "\w+$" would match the last word in each paragraph.
15. Using Wildcards for Character Ranges:
• [A-Z] matches any uppercase letter.
• [a-z] matches any lowercase letter.
• [0-9] matches any digit.
16. Matching Variable Length Patterns:
• colo*r matches "color" and "colour".
• behaviou?r matches "behavior" and "behaviour".
17. Matching Specific Patterns:
• wom?n matches "woman" and "women".
• colou?r matches "color" and "colour".
18. Matching Any Word:
• <[A-Za-z]*> matches any single word.
• \<\w+\> also matches any single word.
19. Matching Specific Word Patterns:
• \b[Ss]uccess\b matches "success" and "Success".
• \b\w*ful\b matches any word ending with "ful".
20. Matching Patterns with Line Breaks:
• ^p^p and ^l^l matches double paragraph breaks.
• ^13^13 matches double line breaks (ASCII code for paragraph break).
21 Replacing Using Captured Groups:
• Find: ([A-Za-z]+) ([A-Za-z]+) Replace: \2, \1 (swaps first and last names)
22. Matching Email Addresses:
• \<\w+@\w+\.\w+\> matches basic email addresses.
• \<\S+@\S+\.\S+\> matches more complex email addresses.
23. Matching URLs:
• http://\<\S+\> matches HTTP URLs.
• https?://\<\S+\> matches both HTTP and HTTPS URLs.
24. Matching Phone Numbers:
• \(?(\d{3})\)?[-.\s]*(\d{3})[-.\s]*(\d{4}) matches various phone number formats.
25. Matching Dates:
• \d{1,2}/\d{1,2}/\d{4} matches MM/DD/YYYY dates.
• \d{4}-\d{1,2}-\d{1,2} matches YYYY-MM-DD dates.
26. Matching Bulleted/Numbered Lists:
• ^p\[0-9]\. matches numbered list items.
• ^p[\*\-] matches bulleted list items.
27. Matching Specific Number Ranges:
• \b\d{3}-\d{2}-\d{4}\b matches social security numbers in the format XXX-XX-XXXX.
• \b\d{1,3}(,\d{3})*\b matches numbers with comma thousands separators.
28. Matching Specific Word Patterns at the Start/End of a Line:
• ^\d{1,2}\. matches numbered list items at the beginning of a line.
29. Matching Specific Patterns with Quantifiers:
• (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s\d{1,2} matches a month abbreviation followed by a day number.
30. Non-Greedy Matching:
• ^p.*?end matches the shortest string between a paragraph break and "end".
31. Matching Patterns with Escaped Characters:
• \(\d{3}\) matches phone numbers in parentheses.
32. Matching Whole Sentences:
• ^.+?\. matches whole sentences.
33. Matching Repeated Words:
• \b(\w+)\s\1\b matches repeated words like "the the" or "apple apple".
34. Excluding Specific Characters:
• [^\d] matches any character that is not a digit.
• [^\s] matches any character that is not whitespace.
35. Matching Specific Patterns within Specific Contexts:
• (start|begin)\s\w+ matches "start word" or "begin word".
36. Matching Specific HTML Tags:
• <[A-Za-z][A-Za-z0-9]*\b[^>]*> matches basic HTML tags.
37. Matching Specific Word Length:
• \b\w{5}\b matches five-letter words.
38. Matching Specific Character Combinations:
• (?i)\b(Win(dows|dows\w+))\b matches "Windows" and "WindowServer" case-insensitively.
39. Replacing Special Characters:
• [\r\n]+ matches multiple line breaks, which can be replaced with a single line break.
40. Matching Words with Hyphens:
• \b[A-Za-z\-]+\b matches words with hyphens.
41. Matching Specific Word Length Range:
• \b\w{4,8}\b matches words with 4 to 8 characters.
42. Matching Specific Patterns with Conditions:
• \b(\d{2}-)?\d{4}\b matches either YYYY or YY-YYYY (year) patterns.
43. Matching Specific Patterns with Quantifiers:
• \b\d{1,3}(st|nd|rd|th)\b matches numbers with their ordinal indicators (1st, 2nd, 3rd, etc.).
44. Matching Alphanumeric Patterns:
• \b[A-Za-z\d]+\b matches alphanumeric words.
45. Matching Specific Patterns within Quotation Marks:
• “[^”]+” matches text within double quotation marks.
46. Matching Patterns with Optional Characters:
• colour(s)? matches both "color" and "colours".
47. Matching Patterns with Exact Repetition:
• \b\w{5}\s\w{5}\b matches two consecutive words, each with 5 characters.
48. Matching Patterns with Prefixes:
• re-\w+ matches words starting with "re-".
49. Matching Patterns with Suffixes:
• \w+ing\b matches words ending with "ing".
50. Matching Patterns with Specific Capitalization:
• \b[A-Z][a-z]+\b matches capitalized words.
51. Matching Patterns with Mixed Capitalization:
• (?i)\b[A-Za-z]+\b matches words with mixed capitalization.
52. Matching Patterns within Specific Number Ranges:
• \b\d{2,4}\b matches 2 to 4-digit numbers.
53. Matching Patterns within Specific Date Ranges:
• \b(19|20)\d{2}\b matches years between 1900 and 2099.
54. Matching Patterns within Specific URL Domains:
• https?://(www\.)?example\.com\b matches URLs from example.com.
55. Matching Patterns with Nested Groups:
• (red|blue|(green|yellow))\sapple matches "red apple", "blue apple", and "green apple".
56. Matching Specific Words with Prefixes and Suffixes:
• \b(pre|post)\w+\b matches words starting with "pre" or "post".
57. Matching Patterns with Optional Parts:
• \b\d{1,2}(-\d{1,2})?\b matches numbers like "5" or "5-10".
58. Matching Patterns within Parentheses:
• \([\w\s]+\) matches text within parentheses.
59. Matching Patterns with Alternative Words:
• \b(cat|dog|bird)\b matches "cat", "dog", or "bird".
60. Matching Patterns with Line Breaks:
• ^p\w+^p matches paragraphs that start and end with the same word.
61. Matching Patterns with Different Word Forms:
• \b(run|running|ran)\b matches different forms of the word "run".
62. Matching Patterns with Repeated Characters:
• \b(\w)\1+\b matches words with repeated characters, like "bookkeeper".
63. Matching Patterns within Brackets:
• \[.*?\] matches text within square brackets.
64. Matching Patterns within Quotation Marks:
• “[^”]*” matches text within double quotation marks.
65. Matching Patterns with Specific Case Sensitivity:
• \b(?i)case\b matches "case" case-insensitively.
66. Matching Patterns with Nested Groups and Alternatives:
• (\d+\s(year(s)?)|\d+\s(month(s)?)) matches "5 years", "10 months", "15 year", etc.
67. Matching Patterns with Special Characters:
• \b\d+(\.\d{2})?\b matches decimal numbers like "10" or "10.50".
68. Matching Patterns with Exact Word Repetition:
• \b(\w+)\s+\1\b matches repeated adjacent words.
69. Matching Patterns with Specific Line Start and End:
• ^p\*\*\*\*\*^13 matches lines that start and end with asterisks.
70. Matching Patterns with Specific Word Length and Prefixes:
• \b\w{7,}\b matches words with at least 7 characters.
• \bun\w+\b matches words that start with "un".
71. Matching Patterns with Optional Hyphens:
• \b\w+-?\w+\b matches words with optional hyphens, like "self-esteem" or "selfesteem".
72. Matching Patterns within Specific Indentation:
• ^p\s{4}\w+ matches words that start after a 4-space indentation.
73. Matching Patterns with Nested Group and Quantifier:
• (\b[A-Za-z]+\b)\s+\1 matches repeated adjacent words with a space in between.
74. Matching Patterns with Negative Lookahead:
• \b\d{3}(?!\d)\b matches 3-digit numbers not followed by another digit.
75. Matching Patterns with Specific Email Domains:
• \b\w+@example\.com\b matches email addresses from the example.com domain.
76. Matching Patterns within Specific Font Styles:
• <[Ii]>\w+</[Ii]> matches text within italic tags.
77. Matching Patterns with Specific Font Sizes:
• <[Ff]ont size="12">\w+</[Ff]ont> matches text in a specific font size.
78. Matching Patterns with Specific Word Parts:
• \b\w+ed\b matches past tense verbs.
79. Matching Patterns with Specific Capitalization and Punctuation:
• (?i)\b[A-Z][a-z]+\b(?=\.) matches capitalized words followed by a period.
80. Matching Patterns with Specific Indentation and Bullet Points:
• ^\s{4}[\*\-]\s\w+ matches bullet points with a 4-space indentation.
81. Matching Patterns with Specific Formatting and Hyperlinks:
• \<[Hh]yperlink\s\".*?\"\> matches hyperlink formatting.
82. Matching Patterns with Specific Numbered List Formats:
• ^p(\d{1,2}\.)\s matches numbered list items like "1." or "10.".
83. Matching Patterns with Specific Italics and Bold Styles:
• \[B\]\[I\]\w+\[/I\]\[/B\] matches text within bold and italic tags.
84. Matching Patterns with Specific Character Counts:
• \b\w{3,5}\b matches words with 3 to 5 characters.
85. Matching Patterns with Specific HTML Tag Attributes:
• <[A-Za-z]+\sclass="[\w\s]+"> matches HTML tags with a "class" attribute.
86. Matching Patterns with Specific Line Numbers:
• ^13^#^13 matches a line break followed by a line number and another line break.
87. Matching Patterns with Specific Footnote References:
• \[fn\d+\] matches footnote references like "[fn1]" or "[fn123]".
88. Matching Patterns with Specific Superscript References:
• \b\w+\^{\d+}\b matches words with superscript references, like "word^2".
89. Matching Patterns with Specific Subscript References:
• \b\w+_{\d+}\b matches words with subscript references, like "H2O_{l}".
90. Matching Patterns with Specific Currency Formats:
• \b\$\d+(\.\d{2})?\b matches dollar amounts, like "$10" or "$25.50".
91. Matching Patterns with Specific Page Numbers:
• \b(page|p\.)\s\d+\b matches "page 5" or "p. 10".
92. Matching Patterns with Specific Bullet Characters:
• ^p[\u2022\-]\s\w+ matches bullet points using different bullet characters.
93. Matching Patterns with Specific Table References:
• \b(table|tbl)\s\d+\b matches "table 1" or "tbl 2".
94. Matching Patterns with Specific Heading Styles:
• ^13\<[Hh]\d\>.*^13 matches headings formatted with different heading levels.
95. Matching Patterns with Specific Text Highlighting:
• \{[Hh]ighlight\s[\w\s]+\} matches text within highlighting tags.
96. Matching Patterns with Specific Citation Styles:
• (\[\d+\])\s\w+ matches citations like "[1] Author et al.".
97. Matching Patterns with Specific Lists of Abbreviations:
• ^p\[A-Z]{2,4}\s-\s.+$ matches abbreviation lists like "AB - Abbreviation".
98. Matching Patterns with Specific En Dash Usage:
• \b\d+\s–\s\d+\b matches number ranges with an en dash, like "5 – 10".
99. Matching Patterns with Specific Em Dash Usage:
• \b\w+\s—\s\w+\b matches phrases with an em dash, like "author — title".
100. Matching Patterns with Specific Section References:
• §\s\d+ matches section references like "§ 3" or "§ 10".
101. Matching Patterns with Specific Equation Numbering:
• Equation\s\d+ matches equation references like "Equation 5".
102. Matching Patterns with Specific Code Snippets:
• \[code\]\s[\s\S]+\s\[/code\] matches text within code tags.
103. Matching Patterns with Specific Date Formats:
• \b\d{1,2}/\d{1,2}/\d{4}\b matches MM/DD/YYYY dates.
104. Matching Patterns with Specific Time Formats:
• \b\d{1,2}:\d{2}\s(am|pm)\b matches time formats like "11:30 am".
105. Matching Patterns with Specific Language References:
• \b(en|fr|es)\b matches language references like "en" or "fr".
106. Matching Patterns with Specific Unicode Characters:
• \b[\u2600-\u26FF]+\b matches various Unicode symbols (e.g., ☀️).
107. Matching Patterns with Specific Custom Styles:
• \b<CustomStyle>\w+</CustomStyle>\b matches custom-styled text.
108. Matching Patterns with Specific Footnote Markers:
• \[\^\d+\] matches footnote markers like "[^1]".
109. Matching Patterns with Specific Cross-References:
• \bSee\s"[\w\s]+" on page \d+\b matches cross-references like "See "Topic" on page 5".
110. Matching Patterns with Specific Underlined Text:
• \b<u>\w+</u>\b matches underlined words.
111. Matching Patterns with Specific Strikethrough Text:
• \b<s>\w+</s>\b matches strikethrough words.
112. Matching Patterns with Specific Horizontal Line Styles:
• ^13^p___^p matches horizontal lines created using underscores.
113. Matching Patterns with Specific Page Breaks:
• ^12^p^12^p matches double page breaks.
114. Matching Patterns with Specific Column Breaks:
• ^14^p^14^p matches double column breaks.
115. Matching Patterns with Specific Table Styles:
• <[Tt]able\sstyle="[\w\s]+"> matches tables with specific styles.
116. Matching Patterns with Specific Superscript References:
• x\^\d+ matches "x" followed by a superscript number.
117. Matching Patterns with Specific Subscript References:
• CO_{2} matches "CO" with subscript "2".
118. Matching Patterns with Specific All Caps Text:
• \b\<[Ss]mallCaps\>\w+\<\/[Ss]mallCaps\>\b matches all caps text.
119. Matching Patterns with Specific Phonetic Transcriptions:
• \/[\w\s]+\/ matches text within slashes used for phonetic transcription.
120. Matching Patterns with Specific Placeholder Text:
• \{Placeholder\} matches "{Placeholder}".
121. Matching Patterns with Specific Hidden Text:
• \{Hidden\} matches hidden text markers.
122. Matching Patterns with Specific Comments:
• <!--[\s\S]*?--> matches HTML comments.
123. Matching Patterns with Specific Text Box Content:
• \<[Tt]ext[Bb]ox\>[\s\S]*?\<\/[Tt]ext[Bb]ox\> matches content within text boxes.
124. Matching Patterns with Specific Drop Cap Styles:
• \<[Dd]ropCap\>\w+\<\/[Dd]ropCap\> matches drop cap styled text.
125. Matching Patterns with Specific Captions:
• \bFigure\s\d+\b matches figure captions like "Figure 1".
126. Matching Patterns with Specific Page Margins:
• ^p^m\w+=\d+^m matches page margin settings.
127. Matching Patterns with Specific Line Spacing:
• ^p^m\w+^w\d+^w^m matches line spacing settings.
128. Matching Patterns with Specific Image References:
• \{Image\:\s[\w\s]+\} matches image references like "{Image: picture.jpg}".
129. Matching Patterns with Specific Table of Contents Entries:
• \{TOC\s"\w+"\} matches table of contents entries like "{TOC "Chapter 1"}".
130. Matching Patterns with Specific Cross-References to Headings:
• ^13^pSee\s"^13^p\w+^13^p" on page ^13^p\d+^13 matches cross-references to headings.
131. Matching Patterns with Specific Numbered Footnote Styles:
• ^13^f^f^s[\w\s]+\^p matches numbered footnote styles.
132. Matching Patterns with Specific Highlighted Text:
• ^13^h[\w\s]+\^h matches highlighted text.
133. Matching Patterns with Specific Date Fields:
• ^19^d M/d/yyyy^19 matches date fields with different formats.
134. Matching Patterns with Specific Page Number Fields:
• ^19^p^#^19 matches page number fields.
135. Matching Patterns with Specific Table of Figures Entries:
• \{SEQ\s[\w\s]+\\# \w+\} matches table of figures entries.
136. Matching Patterns with Specific Equation Fields:
• ^19^e^sEquation\s\d+\^p matches equation fields.
137. Matching Patterns with Specific Index Entries:
• \{ XE\s"\w+"\} matches index entries like "{ XE "term"}".
138. Matching Patterns with Specific Text Form Fields:
• { FORMTEXT } matches text form fields.
139. Matching Patterns with Specific Checkbox Form Fields:
• { FORMCHECKBOX } matches checkbox form fields.
140. Matching Patterns with Specific Mail Merge Fields:
• ^19^m MERGEFIELD\s\w+\s\* MERGEFORMAT^19 matches mail merge fields.
141. Matching Patterns with Specific Page Orientation:
• ^p^m\w+=\w+^m matches page orientation settings.
142. Matching Patterns with Specific Character Styles:
• ^13^s[\w\s]+\^s matches text with specific character styles.
143. Matching Patterns with Specific Page Layouts:
• ^12^p^m\w+=\w+^m matches page layout settings.
144. Matching Patterns with Specific Section Breaks:
• ^12^p^m\w+^s\d+^s^m matches section break settings.
145. Matching Patterns with Specific Footnote Formats:
• ^13^f^s[\w\s]+\^p matches footnote formats.
146. Matching Patterns with Specific Bibliography Styles:
• ^13^c^s[\w\s]+\^p matches bibliography styles.
147. Matching Patterns with Specific Caption Numbering Formats:
• ^13^mCaption\s\w+^w^#^w^m matches caption numbering formats.
148. Matching Patterns with Specific Field Codes:
• ^19^dREF\s\w+\s\* MERGEFORMAT^19 matches specific field codes.
149. Matching Patterns with Specific Page Border Styles:
• ^12^p^m\w+^b\w+^b^m matches page border styles.
150. Matching Patterns with Specific Bookmark References:
• ^19^dREF\s\w+\^s\s\w+\^s\s\w+\^d^19 matches bookmark references.
151. Matching Patterns with Specific Table Styles:
• ^19^t^s[\w\s]+\^s^19 matches table styles.
152. Matching Patterns with Specific List Styles:
• ^19^m\s\w+\s\* MERGEFORMAT^19 matches list styles.
153. Matching Patterns with Specific Autotext Entries:
• ^13^a\s\w+\^a matches autotext entries.
154. Matching Patterns with Specific Page Number Formatting:
• ^12^p^m\w+\s\w+\s\w+=\d+\s\w+\s\w+=\d+\s\w+=\d+^m matches page number formatting settings.
155. Matching Patterns with Specific Line Numbering:
• ^12^p^m\w+\s\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+^m matches line numbering settings.
156. Matching Patterns with Specific Track Changes Options:
• ^12^p^m\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches track changes options.
157. Matching Patterns with Specific Table of Authorities Formats:
• ^12^p^m\w+\s\w+\s\w+=\d+\s\w+\s\w+=\d+^m matches table of authorities formats.
158. Matching Patterns with Specific Field Formats:
• ^12^p^m\w+\s\w+=\d+\s\w+\s\w+=\d+^m matches specific field formats.
159. Matching Patterns with Specific Numbered List Formats:
• ^12^p^m\w+\s\w+\s\w+=\d+^m matches numbered list formats.
160. Matching Patterns with Specific Footnote Numbering Formats:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+^m matches footnote numbering formats.
161. Matching Patterns with Specific Table of Contents Formats:
• ^12^p^m\w+\s\w+\s\w+=\d+\s\w+\s\w+=\d+^m matches table of contents formats.
162. Matching Patterns with Specific Page Break Styles:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+^m matches page break styles.
163. Matching Patterns with Specific Drop Cap Styles:
• ^13^d^s\w+\s\w+\s\w+\s\w+=\d+^13 matches drop cap styles.
164. Matching Patterns with Specific Equation Numbering Formats:
• ^13^e^s\w+\s\w+\s\w+=\d+^13 matches equation numbering formats.
165. Matching Patterns with Specific Table of Figures Formats:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+^m matches table of figures formats.
166. Matching Patterns with Specific Table of Authorities Entry Formats:
• ^12^p^m\w+\s\w+\s\w+\s\w+\s\w+=\d+^m matches table of authorities entry formats.
167. Matching Patterns with Specific Index Entry Formats:
• ^12^p^m\w+\s\w+\s\w+=\d+^m matches index entry formats.
168. Matching Patterns with Specific List Bullet Styles:
• ^12^p^m\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches list bullet styles.
169. Matching Patterns with Specific Form Field Formats:
• ^13^f^s\w+\s\w+\s\w+=\d+^13 matches form field formats.
170. Matching Patterns with Specific Caption Numbering Styles:
• ^13^mCaption\s\w+\s\w+\s\w+=\d+^w^#^w^#^w^#^13 matches caption numbering styles.
171. Matching Patterns with Specific Table Gridline Styles:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+^m matches table gridline styles.
172. Matching Patterns with Specific Page Number Positioning:
• ^12^p^m\w+\s\w+=\d+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches page number positioning settings.
173. Matching Patterns with Specific Index Entry Styles:
• ^13^c^s\w+\s\w+\s\w+\s\w+\s\w+=\d+^p matches index entry styles.
174. Matching Patterns with Specific Bibliography Entry Formats:
• ^13^b^s\w+\s\w+\s\w+\s\w+=\d+^13 matches bibliography entry formats.
175. Matching Patterns with Specific Heading Numbering Formats:
• ^12^p^m\w+\s\w+\s\w+\s\w+\s\w+\s\w+=\d+^w^#^w^#^w^#^12 matches heading numbering formats.
176. Matching Patterns with Specific Table Grid Styles:
• ^12^p^m\w+\s\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+^m matches table grid styles.
177. Matching Patterns with Specific Table Cell Styles:
• ^12^p^m\w+\s\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches table cell styles.
178. Matching Patterns with Specific Line Numbering Distance:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+^m matches line numbering distance settings.
179. Matching Patterns with Specific Paragraph Styles:
• ^12^p^m\w+\s\w+=\d+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches paragraph styles.
180. Matching Patterns with Specific Table Alignment Styles:
• ^12^p^m\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches table alignment styles.
18• Matching Patterns with Specific Table Caption Formats:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches table caption formats.
182. Matching Patterns with Specific Table of Authorities Entry Styles:
• ^12^p^m\w+\s\w+\s\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches table of authorities entry styles.
183. Matching Patterns with Specific Index Entry Formats:
• ^13^c^s\w+\s\w+\s\w+\s\w+=\d+^p matches index entry formats.
184. Matching Patterns with Specific AutoFormat Settings:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches AutoFormat settings.
185. Matching Patterns with Specific Table Cell Alignment:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=
\d+\s\w+=\d+^m
matches table cell alignment.
186. Matching Patterns with Specific Table Header Row Formats:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=
\d+\s\w+=\d+\s\w+=\d+^m
matches table header row formats.
187. Matching Patterns with Specific Endnote Numbering Formats:
• ^12^p^m\w+\s\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=
\d+\s\w+=\d+\s\w+=\d+^m
matches endnote numbering formats.
188. Matching Patterns with Specific Margins for Section Breaks:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=
\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m
matches margins for section breaks.
189. Matching Patterns with Specific Footnote Separator Formats:
• ^12^p^m\w+\s\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=
\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m
matches footnote separator formats.
190. Matching Patterns with Specific AutoCorrect Settings:
• ^12^p^m\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches AutoCorrect settings.
191. Matching Patterns with Specific Table of Figures Entry Formats:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches table of figures entry formats.
192. Matching Patterns with Specific Page Layout Settings for Sections:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=
\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m
matches page layout settings for sections.
193. Matching Patterns with Specific List Styles for Multilevel Lists:
• ^12^p^m\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=
\d+^m
matches list styles for multilevel lists.
194. Matching Patterns with Specific Footnote Numbering Formats:
• ^12^p^m\w+\s\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches footnote numbering formats.
195. Matching Patterns with Specific Track Changes Options for Authors:
• ^12^p^m\w+\s\w+\s\w+\s\w+=\d+\s\w+=\d+\s\w+=\d+\s\w+=\d+^m matches track changes options for authors.