If I have an array like this:
exemplo = ["Árvore", "Casa", "Computador", "É", "Poste", "Pássaro", "Índia", "Ar", "Ásia"]
The exemplo.sort()
considers the accentuation of the words to sort, putting the accented ones last:
exemplo.sort()
["Ar", "Casa", "Computador", "Poste", "Pássaro", "Árvore", "Ásia", "É", "Índia"]
How to get the array sorted by disregarding the accents?