vote up 0 vote down star
  How to check a character array is null in objective C?

  char hName[255]; 
  - (void)setHost {
     phent = gethostbyaddr((const char*)&haddr, sizeof(int), AF_INET);
     if(phent){  
     strncpy(hName,phent->h_name,255);        								

}

-(void) getHost {

    NSString *str = [[NSString alloc] initWithBytes:tTemp.hName 
    length:sizeof(tTemp.hName) encoding:NSASCIIStringEncoding];
 }

}

 I have a character array named hName[255]. I will assign values to this array at some
point of my project. Now i need to check if the hName[255] contains null value. i tried 
some methods. I get a string str from that array and check if it is equal to @""; It  
failed. Then i check the length of the string str. Even if the array contains no values 
it will return 255.
How can i check the array contains null value.Any help ? Thanks in advance!!
flag

23% accept rate
1  
0% accept rate? What's up with that? – Ed Swangren Nov 5 at 1:18
Can you explain how to add accept rate for answers. If i get any hint about my question i go behind that.Another thing is that i cant login with my open id. Extreamly sorry for 0% accept rate. – Edwin Nov 5 at 4:07
Read the FAQ to learn how to accept: meta.stackoverflow.com/questions/5234/… – outis Nov 5 at 4:10
No need to accept an answer until there's a response that fully answers your question. – outis Nov 5 at 4:26
stackoverflow.com/users/150314/edwin click on each of your questions and decide if you like any of them enough to make them the best answer. Do that about weekly. – dlamblin Nov 5 at 4:29
show 3 more comments

2 Answers

vote up 0 vote down

First thing, note that the word "null" is overloaded. You can have null pointers and null (empty) strings, and there's the null character ('\0', equal to 0 when converted to an int:((int)'\0') == 0). There are also uninitialized variables, which may or may not be null. I'm guessing you're talking about an uninitialized character array, used as a c-string.

Most likely, hName is being allocated on the stack (I can't tell without seeing more of the source code), which means it's not zero-initialized. Practically speaking, hName will hold whatever data was last stored in the region of memory that hName occupies. You'll need to initialize it yourself.

char hName[255] = {0};
// or
memset(hName, 0, sizeof(hName));
// or, if you have bzero
bzero(hName, sizeof(hName));

Also note that since hName is declared as an array rather than a pointer, sizeof(hName) is the number of characters it stores.

void test() {
    char *name1 = "";
    char name2[255];
    // All the following lines will be true
    strlen(name1) == 0;
    sizeof(name2) == 255
    0 <= strlen(name2) && strlen(name2) < 255;
    // pointers are 4 or 8 bytes on most machines these days
    sizeof(name1) == 4 || sizeof(name1) == 8;
}
link|flag
I edited my question. I think now it is more clear and you can understand easily. – Edwin Nov 5 at 5:01
vote up 7 vote down

Hi,

You might need to elaborate a bit on your question. For example, to just check if a pointer is null is pretty simple :

char *my_chars;

...

if (! my_chars)
  NSLog(@"Woo, my_chars is null");
else
  NSLog(@"my_chars is at 0x%08x", my_chars);

because null is just 0 :)


However, it doesn't look like that's your problem. you've created an array of characters like so

char my_chars[255];

so my_chars is not going to be null.

However, as outis says in his answer, you've just allocated it and not zeroed the contents so you have no idea what's in those 255 bytes! Out of the three options he suggests I'd personally go with this one :

char my_chars[255];
memset(my_chars, 0, sizeof(my_chars));

now, you have an array of 255 zeroes :) This is pretty easy to check to see if it's null :

if (0 == strlen(my_chars))
  NSLog(@"It's not null but it is an empty string!");
else
  NSLog(@"my_chars contains a valid string which is %i chars long", strlen(my_chars));

Hope that helps.

Sam

link|flag
I edited my question .Kindly go through that. – Edwin Nov 5 at 4:09

Your Answer

Get an OpenID
or

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