I am using Ruby 1.8. It seems that downcase does not change non- downcase characters. For instance:
"Δ".downcase
returns "Δ"
I know that in Ruby 1.9.1 and later, I can use Unicode Utils ( from here ). I tried this and it works well. Returns "δ" for the previous example.
Is there an equivalent (or any) solution for 1.8 Ruby?
source share