Swift convert String to lowercase and uppercase


import UIKit

let myString = "FROMAGERIE baechler"

print("Lowercase String: " + myString.lowercased())
print("Uppercase String: " + myString.uppercased())


No comments:

Post a Comment

NO JUNK, Please try to keep this clean and related to the topic at hand.
Comments are for users to ask questions, collaborate or improve on existing.