I want to remove extra spaces, add spaces if required and capitalize first letter of each word after special character using R
string <- "apple,banana, cat, doll and donkey; fish,goat"
I want output as
Apple, Banana, Cat, Doll and donkey; Fish, Goat
I tried
gsub("(^.|,.|;.)", "\\U\\1", string, perl=T, useBytes = F)
It didn't work. Please help