Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/core_ext/string.rb
Instance Method Summary collapse
Instance Method Details
#without_accents ⇒ Object
7 8 9 |
# File 'lib/core_ext/string.rb', line 7 def without_accents UnicodeUtils.nfkd(self).gsub(/[^\x00-\x7F]/, '').to_s end |