vote up 5 vote down star
2

How do I test if an NSString is empty in Objective C?

flag

3 Answers

vote up 20 vote down check

You can check if [string length] == 0. This will check if it's a valid but empty string (@"") as well as if its nil, since calling length on nil will also return 0.

link|flag
vote up 8 vote down

Marc's answer is correct. But I'll take this opportunity to include a pointer to Wil Shipley's generalized isEmpty, which he shared on his blog:

static inline BOOL IsEmpty(id thing) {
return thing == nil
|| ([thing respondsToSelector:@selector(length)]
&& [(NSData *)thing length] == 0)
|| ([thing respondsToSelector:@selector(count)]
&& [(NSArray *)thing count] == 0);
}
link|flag
Thanks for this, I'd forgotten about it. – Abizern May 23 at 17:54
1  
If you want this to be very generalized, one could implement this logic as a category on NSObject instead of using a static method as shown here. – Brad Smith May 24 at 0:59
Oddly, this does not actually check for [NSNull null]. – Peter N Lewis Jun 23 at 6:13
vote up 1 vote down

The first approach is valid, but doesn't work if your string have blank spaces (@" "). So you must to clear this white spaces before test it.

This code clear all the blank spaces on both sides of one string:

[stringObject stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet] ];

One good idea is create one macro, so you don't have to type this monster line:

#define allTrim( object ) [object stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet] ]

Now you can use:

NSString *emptyString = @"   ";

if ( [allTrim( emptyString ) length] == 0 ) NSLog(@"Is empty!");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.