GREP Question
i have indesign para style have character style nested colon. i'd have grep style states "whenever encounter text in parenthesis, italicize text (along parathensis)". thought [\(\l\u\)] didn't it. appreciated.
your try consists of *character set*, is, list of matching single characters. hence doesn't work -- *all* of each single character in set, uppercase, lowercase, , parentheses, matched, 1 @ time.
try instead:
\(.+?\)
it's left right: open parens, character, lots of them, not many, closing parens.
More discussions in InDesign
adobe
Comments
Post a Comment