Best way to check if a character array is empty

245,630

Solution 1

Given this code:

char text[50];
if(strlen(text) == 0) {}

Followed by a question about this code:

 memset(text, 0, sizeof(text));
 if(strlen(text) == 0) {}

I smell confusion. Specifically, in this case:

char text[50];
if(strlen(text) == 0) {}

... the contents of text[] will be uninitialized and undefined. Thus, strlen(text) will return an undefined result.

The easiest/fastest way to ensure that a C string is initialized to the empty string is to simply set the first byte to 0.

char text[50];
text[0] = 0;

From then, both strlen(text) and the very-fast-but-not-as-straightforward (text[0] == 0) tests will both detect the empty string.

Solution 2

Depends on whether or not your array is holding a null-terminated string. If so, then

if(text[0] == '\0') {}

should be sufficient.

Edit: Another method would be...

if (strcmp(text, "") == 0)

which is potentially less efficient but clearly expresses your intent.

Solution 3

This will work to find if a character array is empty. It probably is also the fastest.

if(text[0] == '\0') {}

This will also be fast if the text array is empty. If it contains characters it needs to count all the characters in it first.

if(strlen(text) == 0) {}

Solution 4

The second method would almost certainly be the fastest way to test whether a null-terminated string is empty, since it involves one read and one comparison. There's certainly nothing wrong with this approach in this case, so you may as well use it.

The third method doesn't check whether a character array is empty; it ensures that a character array is empty.

Solution 5

The second one is fastest. Using strlen will be close if the string is indeed empty, but strlen will always iterate through every character of the string, so if it is not empty, it will do much more work than you need it to.

As James mentioned, the third option wipes the string out before checking, so the check will always succeed but it will be meaningless.

Share:
245,630
ZPS
Author by

ZPS

Updated on July 05, 2022

Comments

  • ZPS
    ZPS almost 2 years

    Which is the most reliable way to check if a character array is empty?

    char text[50];
    
    if(strlen(text) == 0) {}
    

    or

    if(text[0] == '\0') {}
    

    or do i need to do

     memset(text, 0, sizeof(text));
     if(strlen(text) == 0) {}
    

    Whats the most efficient way to go about this?

  • ZPS
    ZPS over 14 years
    I structured that badly, I meant for the memset(text, 0, sizeof(text)); to come immediately after char text[50]; because I was not sure if it was bad practice to strlen a char array before it was assigned anything.
  • Graeme Perrow
    Graeme Perrow over 14 years
    It certainly is a bad idea to strlen an array before it is assigned - strlen will advance through memory until it reaches a 0 byte, which may be well beyond the end of the array.
  • Thomas Eding
    Thomas Eding over 11 years
    Don't use strlen to test if a cstring is empty. It is not a constant time operation.
  • Peter Stuifzand
    Peter Stuifzand over 11 years
    Which is what I explain in the answer.
  • Amandeep Rohila
    Amandeep Rohila over 2 years
    for me following is working if(text[0]==''){return false;} return true;