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.
|