toTitleCase()方法用於將陳述的字符轉換為標題大小寫字符。
函數定義: def toTitleCase: Char
返回類型: 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
相關用法
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Scala Char toTitleCase() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。