capitalize es un método de clase String en Ruby que se usa para devolver una copia de la string dada al convertir su primer carácter en mayúsculas y el resto en minúsculas.
Sintaxis: str.mayúsculas
Parámetros: Aquí, str es la string dada que se va a convertir.
Devuelve: Copia de la string con el primer carácter en mayúsculas y el resto en minúsculas.
Ejemplo 1:
# Ruby program to demonstrate # the capitalize method # Taking the string and # using the method puts "geeks".capitalize() puts "hey".capitalize()
Producción:
Geeks Hey
Ejemplo #2:
# Ruby program to demonstrate # the capitalize method # Taking a string already in # uppercase and using the # method will give the same # string puts "Computer".capitalize() puts "science".capitalize()
Producción:
Computer Science
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA