Reply To: Grep help in paragraph style

Home Page / Forums / General InDesign Topics (CLOSED) / Grep help in paragraph style / Reply To: Grep help in paragraph style

#75399
Masood Ahmad
Participant

Okay, when should I come for the treat… :)

so here is the breakup:

/.+?\K Condition one
This will look for a slash, followed by any character, followed by a tab
\K means Keep (same as lookbehind)

.+?
This is the actual string we are looking for to make it BOLD i.e. any character

(?=) Condition two
This will look for a tab just after our actual string

Hope that helps :)

This article was last modified on May 15, 2015

Comments (0)

Loading comments...