Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/core_ext/string.rb

Instance Method Summary collapse

Instance Method Details

#without_accentsObject



7
8
9
# File 'lib/core_ext/string.rb', line 7

def without_accents
  UnicodeUtils.nfkd(self).gsub(/[^\x00-\x7F]/, '').to_s
end