Since Strings in Swift no longer have the .uppercaseString or .lowercaseString properties available, how would i go about performing that function?
If i have for example
The uppercaseString and lowercaseString properties on String are not in the Swift standard library anymore. Instead, Foundation provides them now. So you have to
uppercaseString
lowercaseString
String
Foundation
import Foundation
to use it.