判断字符串是否全部为空
Posted 杨大龙dalong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断字符串是否全部为空相关的知识,希望对你有一定的参考价值。
- (BOOL) isBlankString:(NSString *)string {
if (string == nil || string == NULL) {
return YES;
}
if ([string isKindOfClass:[NSNull class]]) {
return YES;
}
if ([[string stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]] length]==0) {
return YES;
}
return NO;
}
以上是关于判断字符串是否全部为空的主要内容,如果未能解决你的问题,请参考以下文章
如何判断 Tasker 变量是未设置、空字符串还是非空字符串