Question
How do you chain GREP patterns in InDesign?
In regex, I can use this to highlight quotation marks:
"([^"]*)"
And if I want to add another pattern, and can use the pipe symbol like this:
\b("([^"]*)"|'([^']*)')\b
This will match single and double quotes. However this syntax with the pipe doesn't seem to work in InDesign.How can I get this to work?
