How can I use re
to write a regex in Python that finds the pattern:
dot "." followed directly by any char [a-zA-Z] (not space or digit)
and then add a space between the dot and the char?
i.e.
str="Thanks.Bob" newsttr="Thanks. Bob"
Thanks in advance, Zvi