swift的String类没有contains这样类型的方法来直接判断字符串中是否包含另一段字符串,但是,可以变通的来实现。
直接上代码:
if "这是一段字符串".componentsSeparatedByString("字符串").count > 0 { println("包含") } else { println("不包含") }
componentsSeparatedByString方法是将字符串分割成数组,如果分割之后数组元素的数量大于0,说明分割成功了,也就说明原来的字符串中包含后面的字符串。不多解释。
原文地址:http://blog.csdn.net/zhyl8157121/article/details/41965889