比较两个字符串?

这个问题在这里已经有了答案:

  • 如何检查一个字符串是否包含Swift中的另一个字符串? 23个答案
  • 来自swift |中的字符串的子字符串 字符串中的子串索引6个答案

  • 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?