In R, I have a column in a data.frame like this:
npt2$name
[1] "Andreas Groll, M.D."
[2] ""
[3] "Pan-Chyr Yang, PHD"
[4] "Suh-Fang Jeng, Sc.D"
[5] "Mostafa K Mohamed Fontanet Arnaud"
[6] "Thomas Jozefiak, M.D."
[7] "Medical Monitor"
[8] "Qi Zhu, MD"
[9] "Holly Posner"
[10] "Peter S Sebel, MB BS, PhD Chantal Kerssens, PhD"
[11] "Lance A Mynderse, M.D."
[12] "Lawrence Currie, MD"
I tried gsub but with no luck. after doing toupper(x) I need to replace all instances of 'MD' or 'M.D.' or 'PHD' with nothing ''.
Is there a nice short trick within R to do it?
In fact I would be interested to see it done on a single string and how differently is it done in one command on the whole list (I am not very good at functional programming yet)