利用...来字符检測(swift)

利用...来字符检測(swift)

by 伍雪颖

let test = "LesvIo"
let interval = "a"..."z"
for c in test {
   
if !interval.contains(String(c)) {
       
println("(c) not lower")
    }
}

原文地址:https://www.cnblogs.com/zfyouxi/p/5329399.html