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