TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
You can fine-tune a search by using any of the following wildcards. In the
Find or Replace dialog box, click More if you don't see the Use wildcards
check box. Then select the Use wildcards check box and type the wildcard
and any other text in the Find what box.
Tip For a quick way to enter a wildcard in the Find what box, click
Special and then click a wildcard.
To find Use this
wildcard
Examples
Any single character ? s?t finds "sat" and "set."
Any string of characters * s*d finds "sad" and "started."
One of the specified characters [ ] w[io]n finds "win" and "won."
Any single character in this range [-] [r-t]ight finds "right" and
"sight." Ranges must be in ascending order.
Any single character except the characters inside the brackets [!]
m[!a]st finds "mist" and "most," but not "mast."
Any single character except characters in the range inside the brackets
[!x-z] t[!a-m]ck finds "tock" and "tuck," but not "tack" or "tick."
Exactly n occurrences of the previous character or expression {n}
fe{2}d finds "feed" but not "fed."
At least n occurrences of the previous character or expression {n,}
fe{1,}d finds "fed" and "feed."
From n to m occurrences of the previous character or expression {n,m}
10{1,3} finds "10," "100," and "1000."
One or more occurrences of the previous character or expression @ lo -at- t
finds "lot" and "loot."
The beginning of a word < <(inter) finds "interesting" and "intercept,"
but not "splintered."
The end of a word > (in)> finds "in" and "within," but not
"interesting."
Notes