hello, i’m fairly new to grep and am hoping someone can suggest a way to solve the following problem. am working on a large book project consisting of many sections, each by different authors, placed from Word. There are many quotations, some italicized, some not. the problem i’m having is that often the quote marks (be they single or double) surrounding the italicized text are *not* italicized, but just regular text. i haven’t been able to figure out a grep expression(s) to find only those quote marks around italicized text — which i would then make italic. i have not applied a character style to the italicized text, though i could, as i can’t see how it would help.
i’ve just been searching for all quote marks:
\p{initial_punctuation}\<|\p{final_punctuation}
and then manually changing the ones that need it, using Change/Find — hopefully there’s a better way! this expression finds apostrophes too, which i would like not to. thanks in advance.
-jamie