Reply To: GREP help! Ignore 2nd Tab?

#84971
Matt Isaac
Participant

Find:(?=.+)
Replace

This simple GREP Should work for finding the first of two tabs. However, if you would need the first of three tabs this expression would need to be altered.
The positive lookahead (?=.+) looks ahead but does not select any text after the first tab that is followed by a tab.

This article was last modified on May 17, 2016

Comments (0)

Loading comments...