swift 判断字符串中是否有汉字

var str = "哈哈哈哈哈1234"

func isIncludeChineseIn(string: String) -> Bool {

    for (_, value) in string.characters.enumerate() {

        if ("u{4E00}" <= value  && value <= "u{9FA5}") {
            return true
        }
    }

    return false
}

isIncludeChineseIn(str) // true
原文地址:https://www.cnblogs.com/angongIT/p/5678481.html