toLowerCase
Deprecated
Warning since 1.5
Use lowercaseChar() instead.
Replace with
lowercaseChar()
Content copied to clipboard
Converts this character to lower case using Unicode mapping rules of the invariant locale.
Since Kotlin
1.1Deprecated
Warning since 1.5
Use lowercase() instead.
Replace with
lowercase()
Content copied to clipboard
Returns a copy of this string converted to lower case using the rules of the default locale.
Since Kotlin
1.1Deprecated
Use lowercase() instead.
Replace with
lowercase(locale)
Content copied to clipboard
Returns a copy of this string converted to lower case using the rules of the specified locale.
Since Kotlin
1.0Deprecated
Use lowercaseChar() instead.
Replace with
lowercaseChar()
Content copied to clipboard
Converts this character to lower case using Unicode mapping rules of the invariant locale.
Since Kotlin
1.0Deprecated
Use lowercase() instead.
Replace with
import java.util.Locale
Content copied to clipboard
lowercase(Locale.getDefault())
Content copied to clipboard
Returns a copy of this string converted to lower case using the rules of the default locale.