El método toTitleCase() se utiliza para convertir el carácter indicado en el carácter de caso de título.
Definición del método: def toTitleCase: Char
Tipo de retorno: Devuelve Char.
Ejemplo 1#
// Scala program of toTitleCase() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toTitleCase() method val result = 'a'.toTitleCase // Displays output println(result) } }
Producción:
A
Ejemplo: 2#
// Scala program of toTitleCase() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toTitleCase() method val result = ('h').toTitleCase // Displays output println(result) } }
Producción:
H
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA