Reply To: Strange GREP behavior

#71309
David Blatner
Keymaster

Ah, I see what you mean now. Try this:
(?<=\.)([^.]+?\?)
Notice that instead of the dot (which means "any character"), I'm typing [^.] which means "anything except a dot/period"

This article was last modified on October 30, 2014

Comments (0)

Loading comments...