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:
var sillyString = "This is a string!" let yellyString = sillyString.uppercaseString let silentString = sillyString.lowercaseString
I would like to take sillyString and mutate it into either uppercase or lowercase. How would i go about doing that now?
Thanks in advance!
Swift String lowercased() The lowercased() method converts all uppercase characters in a string into lowercase characters.
To convert a String to Lowercase in Swift, use String. lowercased() function. Call lowercased() function on the String. The function returns a new string with the contents of the original string transformed to lowercase alphabets.
String
is bridged seamlessly to NSString
, so it does have uppercaseString
and lowercaseString
properties as long as you import Foundation
(or really almost any framework since they'll usually import Foundation
internally. From the Strings and Characters section of the Swift Programming Guide:
Swift’s String type is bridged seamlessly to Foundation’s NSString class. If you are working with the Foundation framework in Cocoa or Cocoa Touch, the entire NSString API is available to call on any String value you create, in addition to the String features described in this chapter. You can also use a String value with any API that requires an NSString instance.
As @newacct pointed out, in Xcode 6.1 / Swift 1.1, uppercaseString
and lowercaseString
are in Swift's String
class so you don't need to use the ones defined in NSString
. However, it's implemented as an extension to the String
class in the Foundation
framework so the solution is still the same: import Foundation
In a playground:
import Foundation var sillyString = "This is a string!" // --> This is a string! let yellyString = sillyString.uppercaseString // --> THIS IS A STRING! let silentString = sillyString.lowercaseString // --> this is a string!
In a playground:
import Foundation var sillyString = "This is a string!" // --> This is a string! let yellyString = sillyString.uppercased() // --> THIS IS A STRING! let silentString = sillyString.lowercased() // --> this is a string!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With