Returns a lowercase version of the string.
SDK
- Xcode 8.0+
Framework
- Swift Standard Library
Declaration
Return Value
A lowercase copy of the string.
Discussion
Here’s an example of transforming a string to all lowercase letters.
Complexity: O(n)
Returns a lowercase version of the string.
SDK
Framework
A lowercase copy of the string.
Here’s an example of transforming a string to all lowercase letters.
Complexity: O(n)
func uppercased() -> String
Returns an uppercase version of the string.