Any single
character
Type ?
For example, s?t finds
"sat" and "set".
Any string of
characters
Type *
For example, s*d finds "sad" and
"started".
The beginning of a
word
Type <
For example, <(inter) finds "interesting" and
"intercept", but not "splintered".
The end of a word
Type >
For example, (in)> finds "in" and
"within", but not "interesting".
One of the
specified characters
Type [ ]
For example, w[io]n finds "win" and "won".
Any single
character in this range
Type [-]
For example, [r-t]ight finds
"right" and "sight". Ranges must be in ascending order.
Any single
character except the characters in the range inside the brackets
Type [!x-z]
For example, t[!a-m]ck finds "tock" and "tuck", but
not "tack" or "tick".
Exactly n
occurrences of the previous character or expression
Type {n}
For example, fe{2}d finds "feed" but not "fed".
At least n
occurrences of the previous character or expression
Type {n,}
For example, fe{1,}d finds "fed" and "feed".
From n to m
occurrences of the previous character or expression
Type {n,m}
For example, 10{1,3} finds "10", "100", and
"1000".
One or more
occurrences of the previous character or expression
Type @
For example, lo@t
finds "lot" and "loot".
Notes
1.
On the Edit
menu, click Find or Replace.
2.
If you don't see
the Special button, click More.
For example,
type ^p to find a paragraph mark.
To
cancel a search in progress, press ESC.
Codes
for items you want to find and replace
As specified, some codes work only if the Use wildcards option
is on or off.
Paragraph mark (¶)
Type ^p (doesn’t work in the Find what
box when wildcards are on)
Tab character (→)
Type ^t
ANSI or ASCII
characters
Type ^0nnn, where nnn is the
character code
Em dash ( — )
Type ^+
En dash ( – )
Type ^=
Caret character
Type ^^
Manual line break
(i)
Type ^l
Column break
Type ^n
Manual page
break
Type ^m (also finds or replaces section breaks
when wildcards are on)
Nonbreaking space
(°)
Type ^s
Nonbreaking hyphen
(-)
Type ^~
Optional hyphen ({)
Type ^-
Graphic
Type ^g
Any character
Type ^?
Any digit
Type ^#
Any letter
Type ^$
Footnote mark
Type ^f
Endnote mark
Type ^e
Field
Type ^d
Section break
Type ^b
White space
Type ^w (any combination of regular and nonbreaking
spaces, and tab characters)
Windows Clipboard
contents
Type ^c
Contents of the
Find what box
Type ^&
Notes