I am looking for an easy way to replace all dotted letters with regular letters. For example, I want to change föóto foo. I can do it as such:
gsub("ö|ó","o","föó")
however, there will probably be a lot of manual work to do this for every possible intermittent writing. Is there any way to do this automatically?
source
share