up vote 77 down vote favorite
31
share [g+] share [fb]

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

link|improve this question

feedback

7 Answers

up vote 174 down vote accepted

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|improve this answer
feedback

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|improve this answer
Thanks for this, I'd forgotten about it. – Abizern May 23 '09 at 17:54
7  
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 '09 at 0:59
4  
Oddly, this does not actually check for [NSNull null]. – Peter N Lewis Jun 23 '09 at 6:13
Me likey this very much. – jeffamaphone May 11 '11 at 20:49
feedback

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|improve this answer
this one works the best for me, thanks! – iWasRobbed May 13 '10 at 3:15
Why use macros when they are not necessary? In this case any sort type safety is sacrificed for no real benefit. – Ruve Geldberg Jul 22 '10 at 19:17
Is for simple convenience, if you like to write "[object stringObject stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet] ]" everytime you want to check if one string is empty, is up to you. – SEQOY Development Team Jul 28 '10 at 23:44
2  
that would better be served by an NSString category that adds a method called trimmedString that does exactly what you wrote. – Dave DeLong Sep 11 '10 at 15:23
Good to known Dave. Thank you. – SEQOY Development Team Sep 17 '10 at 3:40
show 1 more comment
feedback

One of the best solution I ever seen (better than Matt G's one) is this improved inline function I picked up on some Git Hub repo (Wil Shipley's one, but I can't find the link) :

// Check if the "thing" pass'd is empty
static inline BOOL isEmpty(id thing) {
    return thing == nil
    || [thing isKindOfClass:[NSNull class]]
    || ([thing respondsToSelector:@selector(length)]
        && [(NSData *)thing length] == 0)
    || ([thing respondsToSelector:@selector(count)]
        && [(NSArray *)thing count] == 0);
}
link|improve this answer
2  
This is Wil Shipley's work. FYI, you can change [thing isKindOfClass:[NSNull class]] to just (thing == [NSNull null]) – Steve N Mar 7 '11 at 22:09
Thanks for the source mate, i'm updating my post :) – Rob Mar 8 '11 at 5:11
feedback

You should better use this category:

@implementation NSString (Empty)

    - (BOOL) empty{
        return ([[self stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]length] == 0);
    }

@end
link|improve this answer
4  
That definition would conlude that the string " /r/n /r/n" is empty, when it clearly is not - it contains whitespace. Your function is really: -(BOOL)isWhitespace(NSString*); – JBRWilkinson Mar 28 '10 at 20:52
1  
A corollary to this. I implemented this category, and there is a twist. If you call this on a nil string, this function is never called, and you get back a NO(or what evaluates to NO) as a return value. Then you think it's not empty...This might work if the name was isFilled or something like that. – Ying Oct 29 '10 at 13:53
feedback

I put this:

@implementation NSObject (AdditionalMethod)
-(BOOL) isNotEmpty
{
    return !(self == nil
    || [self isKindOfClass:[NSNull class]]
    || ([self respondsToSelector:@selector(length)]
        && [(NSData *)self length] == 0)
    || ([self respondsToSelector:@selector(count)]
        && [(NSArray *)self count] == 0));

};
@end

The problem is that if self is nil, this function is never called. It'll return false, which is desired.

link|improve this answer
feedback

Another option is to check if it is equal to @"" with isEqualToString: like so:

if ([myString isEqualToString:@""]) {
    NSLog(@"myString IS empty!");
} else {
    NSLog(@"myString IS NOT empty, it is: %@", myString);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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