I have a large CSV with a list of words from a spanish dictionary.
I wish to take each one and put them in a collection belonging to the letter they are in.
i.e abertura goes in A
However, spanish vowels can have accents in them like the world "ácido"
In this case I still want it to go in my "A" collection.
I realise of course, I could do this by just looking for the character codes with a switch statement, but I was wondering if there was maybe a more elegant way of doing this?