Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

String Translit for Rails

// Translit for Rails using ActiveSupport. (convert é in e and other utf8 codes in latin chars)

   1  
   2  class String
   3    def translit
   4      ActiveSupport::Multibyte::Handlers::UTF8Handler.normalize(self,:d).split(//u).reject { |e| e.length > 1 }.join
   5    end
   6  end
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS