I have a dataframe with a column containing names and initials. Sometimes one cell carries more than one name and they are entered without whitespace separating them, for example -
A B MclearyT WhitebottomIannis Clancy
I want to turn this into
A B Mcleary, T Whitebottom, Iannis Clancy
Over every cell in the column. The only defining thing I can point to is that the capital letter which starts the name is always preceded by a lower-case letter. What will give me the desired result?