比较两个字符串?
这个问题在这里已经有了答案:
if "test".contains("es") {
//...
}
不要在Swift中使用NSString
。 使用String
(在创建字符串时也是默认值)。
无论如何, contains()
就是你要找的东西。
if "test".contains("es") {
// this will run
}
链接地址: http://www.djcxy.com/p/74007.html
上一篇: Compare two strings?
下一篇: How to create a method to return an array with object of another class?