So I have an old system that uses Fat32 names and struggles with any non-ascii character in their display.
This means: á,é,í,ó,ú,ü or something else is represented as AE? or similar. I would like to see if there is any function that will convert them into their closest ascii equivalent (á -> a, ç -> c), but I couldn´t find anything.
I was wondering if there is anyway I can create a function clean(str) in which I get the str and perform several replacements to clean, I guess I could just nest several replacements into the line in case there is no other option.
Thank you.