Method: String#downcase
- Defined in:
- lib/brstring/string_portuguese.rb
#downcase ⇒ Object
Retorna uma string com caracteres minúsculos
Exemplo:
'TEXTO COM ACENTUAÇÃO'.downcase ==> 'texto com acentuação'
107 108 109 |
# File 'lib/brstring/string_portuguese.rb', line 107 def downcase String.downcase(self) end |