Reply To: GREP apply style after third tab

Home Page / Forums / General InDesign Topics (CLOSED) / GREP apply style after third tab / Reply To: GREP apply style after third tab

#34266
Justin Sligh
Member

Matthew,

You would need to do a positive look-behind to search for the three tab characters and then use a .+ for any number of characters after.

(?<=).+

(?<=) Positive Look-behind
Tab Character
. Any character
+ One or more of the previous

This should do the trick.

This article was last modified on July 15, 2013

Comments (0)

Loading comments...