Quote:
Originally Posted by Tex2002ans
Search: <span class="italics">([‘“\(])
Replace: \1<span class="italics">
Search: ([;’”,\)\]\.])</span>
Replace: </span>\1
Search: [\(]<i>([^<]+)</i>[\)]
Replace: <i>(\1)</i>
|
just thought i'd throw in that you don't need to escape most metacharacters inside a character class, so you could rewrite
([‘“\(])
([‘“(])
([;’”,\)\]\.])
([];’”,).]) <-- closing ] after the first is ignored
[\(]<i>([^<]+)</i>[\)]
[(]<i>([^<]+)</i>[)]