Method: String#downcase

Defined in:
lib/brstring/string_portuguese.rb

#downcaseObject

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