View Single Post
Old 11-22-2017, 05:48 PM   #7
deback
Book E d i t o r
deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.
 
Posts: 432
Karma: 288184
Join Date: May 2015
Device: Laptop
I would search for it this way, using Regex and Case Sensitive checked:

([a-z])([:]) ([a-z])

Replace with the following:

\1 \2 \3

If any of the two letters could be capitalized, then I would use this:

([a-zA-Z])([:]) ([a-zA-Z])

and replace with the same string listed above.
deback is offline   Reply With Quote