titlecase
所在位置是kotlin.text.titlecase
,其相關用法介紹如下。
用法一
使用不變語言環境的 Unicode 映射規則將此字符轉換為標題大小寫。
該函數支持一對多字符映射,因此返回字符串的長度可以大於一。例如,'\uFB00'.titlecase()
返回 "\u0046\u0066"
,其中 '\uFB00'
是 LATIN SMALL LIGATURE FF 字符 ( ff
)。如果此字符沒有標題大小寫映射,則返回 uppercase 的結果。
例子:
import java.util.*
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val chars = listOf('a', 'Dž', 'ʼn', '+', 'ß')
val titlecaseChar = chars.map { it.titlecaseChar() }
val titlecase = chars.map { it.titlecase() }
println(titlecaseChar) // [A, Dž, ʼn, +, ß]
println(titlecase) // [A, Dž, ʼN, +, Ss]
//sampleEnd
}
輸出:
[A, Dž, ʼn, +, ß] [A, Dž, ʼN, +, Ss]
用法二
使用指定 locale 的 Unicode 映射規則將此字符轉換為標題大小寫。
該函數支持一對多字符映射,因此返回字符串的長度可以大於一。例如,'\uFB00'.titlecase(Locale.US)
返回 "\u0046\u0066"
,其中 '\uFB00'
是 LATIN SMALL LIGATURE FF 字符 ( ff
)。如果此字符沒有標題大小寫映射,則返回 uppercase(locale)
的結果。
例子:
import java.util.*
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val chars = listOf('a', 'Dž', 'ʼn', '+', 'ß', 'i')
val titlecase = chars.map { it.titlecase() }
val turkishLocale = Locale.forLanguageTag("tr")
val titlecaseTurkish = chars.map { it.titlecase(turkishLocale) }
println(titlecase) // [A, Dž, ʼN, +, Ss, I]
println(titlecaseTurkish) // [A, Dž, ʼN, +, Ss, İ]
//sampleEnd
}
輸出:
[A, Dž, ʼN, +, Ss, I] [A, Dž, ʼN, +, Ss, İ]
相關用法
- Kotlin toTypedArray用法及代碼示例
- Kotlin then用法及代碼示例
- Kotlin toByteArray用法及代碼示例
- Kotlin take用法及代碼示例
- Kotlin toBooleanStrict用法及代碼示例
- Kotlin takeWhile用法及代碼示例
- Kotlin takeLastWhile用法及代碼示例
- Kotlin to用法及代碼示例
- Kotlin takeLast用法及代碼示例
- Kotlin toBooleanStrictOrNull用法及代碼示例
- Kotlin thenComparator用法及代碼示例
- Kotlin toSortedMap用法及代碼示例
- Kotlin thenBy用法及代碼示例
- Kotlin toProperties用法及代碼示例
- Kotlin toList用法及代碼示例
- Kotlin thenByDescending用法及代碼示例
- Kotlin thenDescending用法及代碼示例
- Kotlin toString用法及代碼示例
- Kotlin trimIndent用法及代碼示例
- Kotlin trimMargin用法及代碼示例
- Kotlin associateBy用法及代碼示例
- Kotlin all用法及代碼示例
- Kotlin map用法及代碼示例
- Kotlin filterNot用法及代碼示例
- Kotlin reduceRight用法及代碼示例
注:本文由純淨天空篩選整理自kotlinlang.org大神的英文原創作品 kotlin.text.titlecase。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。