To: Jeff,
Do a Find and Replace (click Ctrl-H).
The Find and Replace dialoge box should appear, add:
to Find what: "(*)"
or: ("*")
(the first omits the quote marks, the second keeps them)
add to Replace with: \1
Click on More
Check Wildcards
with Replace with: \1 selected (that is, with \1 in reverse video)
click on format -> font -> Italic
The phrase "Format: Font: Italic" should show up underneath Repace with:
Then click on Replace or Replace All and you're done.
Note: the brackets () create one expression, the result is \1. Inside the
expression is the wildcard character * (an asterisk), which represents one or
more characters. The quotaion marks can be either inside the expression, or
outside. If they are outside the expression, then they will not be included
with the replaced text, if they are inside the expression, they will.
Steven Craig Miller