Swift大写和小写字符串

示例

要使字符串中的所有字符都大写或小写:

2.2
let text = "AaBbCc"
let uppercase =text.uppercaseString// "AABBCC"
let lowercase =text.lowercaseString// "aabbcc"
3.0
let text = "AaBbCc"
let uppercase = text.uppercased() // "AABBCC"
let lowercase = text.lowercased() // "aabbcc"