美文网首页
Swfit 字符串的一些操作

Swfit 字符串的一些操作

作者: json_jie | 来源:发表于2017-08-09 22:07 被阅读24次
 let strA = "Hello World"
print("字符串的长度 + \(strA.characters.count)")
let  strB = "Hello Swift"

if strA == strB {
    print("strA == strB 字符串相等")
}else{
    print("strA == strB 字符串不相等")
}

let strC = "Hello World"

if strA == strC {
    print("strA == strC 字符串相等")
}else{
    print("strA == strC 字符串不相等")
}



if strA.isEmpty {
    print("strA 为空")
}else{
    print("strA 不为空")
}


let strD = ""
if strD.isEmpty {
    print("strD 为空")
}else{
    print("strD 不为空")
}




if strA < strB {
    print("strA 小于 strB")
}else{
    print("strA 不小于 strB")
}


if strC > strA  {
    print("strC 大于 strC")
}else{
    print("strC 不大于 strC")
}


if strA != strB {
    print("strA 不等于 strB")
}else{
    print("strA 等于 strB")
}




let strE = "Hello World"
if strA != strE {
    print("strA 不等于 strE")
}else{
    print("strA 等于 strE")
}

log ==================================================

字符串的长度 + 11
strA == strB 字符串不相等
strA == strC 字符串相等
strA 不为空
strD 为空
strA 不小于 strB
strC 不大于 strC
strA 不等于 strB
strA 等于 strE

=======================================================

String.characters.count
计算字符串的长度

==
判断两个字符串是否相等

sEmpty
判断字符串是否为空,返回布尔值

< >
比较两个字符串,对两个字符串的字母逐一比较

!=
比较两个字符串�是否不相等

相关文章

网友评论

      本文标题:Swfit 字符串的一些操作

      本文链接:https://www.haomeiwen.com/subject/lnxcrxtx.html