Reply To: GREP to insert a full stop at the end of paragraphs

Home Page / Forums / General InDesign Topics (CLOSED) / GREP to insert a full stop at the end of paragraphs / Reply To: GREP to insert a full stop at the end of paragraphs

#82151
Peter Kahrel
Participant

> The dot in your [^.] matches any character. To match just a dot in the text, use \.

Which is complete nonsense, because the dot is in a character class so that there’s no need for the backslash. Now that I tried your original ([^.])\r and $1.\r I find that they work fine over here. Though I still think that $ is better than \r, so use ([^.])$ and $1.

This article was last modified on February 21, 2016

Comments (0)

Loading comments...