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

 

posted @ 2016-07-17 14:14  在bug中前行  阅读(2802)  评论(0编辑  收藏  举报