lowercase所在位置是kotlin.text.lowercase,其相关用法介绍如下。

用法一

fun Char.lowercase(): String

使用不变语言环境的 Unicode 映射规则将此字符转换为小写。

该函数支持一对多字符映射,因此返回字符串的长度可以大于一。例如,'\u0130'.lowercase() 返回 "\u0069\u0307" ,其中 '\u0130' 是 LATIN CAPITAL LETTER I WITH DOT ABOVE character ( İ )。如果该字符没有小写映射,则返回该字符的toString()的结果。

例子:

import java.util.*
import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val chars = listOf('A', 'Ω', '1', 'a', '+', 'İ')
val lowercaseChar = chars.map { it.lowercaseChar() }
val lowercase = chars.map { it.lowercase() }
println(lowercaseChar) // [a, ω, 1, a, +, i]
println(lowercase) // [a, ω, 1, a, +, \u0069\u0307]
//sampleEnd
}

输出:

[a, ω, 1, a, +, i]
[a, ω, 1, a, +, i̇]

用法二

fun String.lowercase(): String

返回使用不变语言环境的 Unicode 映射规则转换为小写的此字符串的副本。

该函数支持一对多和多对一的字符映射,因此返回字符串的长度可以与原始字符串的长度不同。

例子:

import java.util.Locale
import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
println("Iced frappé!".lowercase()) // iced frappé!
//sampleEnd
}

输出:

iced frappé!

用法三

fun Char.lowercase(locale: Locale): String

使用指定 locale 的 Unicode 映射规则将此字符转换为小写。

该函数支持一对多字符映射,因此返回字符串的长度可以大于一。例如,'\u0130'.lowercase(Locale.US) 返回 "\u0069\u0307" ,其中 '\u0130' 是 LATIN CAPITAL LETTER I WITH DOT ABOVE character ( İ )。如果该字符没有小写映射,则返回该字符的toString()的结果。

例子:

import java.util.*
import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val chars = listOf('A', 'Ω', '1', 'a', '+', 'İ')
val lowercase = chars.map { it.lowercase() }
val turkishLocale = Locale.forLanguageTag("tr")
val lowercaseTurkish = chars.map { it.lowercase(turkishLocale) }
println(lowercase) // [a, ω, 1, a, +, \u0069\u0307]
println(lowercaseTurkish) // [a, ω, 1, a, +, i]
//sampleEnd
}

输出:

[a, ω, 1, a, +, i̇]
[a, ω, 1, a, +, i]

用法四

fun String.lowercase(locale: Locale): String

返回使用指定 locale 的规则转换为小写的此字符串的副本。

该函数支持一对多和多对一的字符映射,因此返回字符串的长度可以与原始字符串的长度不同。

例子:

import java.util.Locale
import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
println("KOTLIN".lowercase()) // kotlin
val turkishLocale = Locale.forLanguageTag("tr")
println("KOTLIN".lowercase(turkishLocale)) // kotlın
//sampleEnd
}

输出:

kotlin
kotlın