有没有办法检查字符串为nil& “”在Swift?在Rails中,我可以使用blank()来检查。
我目前有这个,但似乎过分:
if stringA? != nil { if !stringA!.isEmpty { ...blah blah } }
如果你处理可选的字符串,这工作:
原文链接:https://www.f2er.com/swift/321291.html(string ?? "").isEmpty
?? nil合并运算符返回左侧,如果它是非零,否则返回右侧。
您也可以像这样使用它来返回默认值:
(string ?? "").isEmpty ? "Default" : string!