带有示例的 Scala Char toTitleCase() 方法
toTitleCase()方法用于将所述字符转换为标题大小写字符。
Method Definition: def toTitleCase: Char
Return Type: It returns Char.
示例: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)
}
}
输出:
A
示例: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)
}
}
输出:
H