With regex I put the optional space in between, and replace with the actual ellipses character: …
search: (\s*\.\s*){2,}
replace: …
this will find any of these:
<p> ..</p>
<p>...</p>
<p>.. .. </p>
.
.
.
Of course you can add spaces before or after the ellipses as desired.
|