Checking for string contents? string Length Vs Empty String - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T03:57:38Zhttp://stackoverflow.com/feeds/question/10230http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string4Checking for string contents? string Length Vs Empty StringHaydar2008-08-13T19:03:27Z2008-10-02T17:32:08Z
<p>Which is more efficient for the compiler and the best practice for checking whether a string is blank? </p>
<ol>
<li>Checking whether the length of the string == 0</li>
<li>Checking whether the string is empty (strVar == "")</li>
</ol>
<p>Also, does the answer depend on language?</p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string/10233#1023312Answer by Stu for Checking for string contents? string Length Vs Empty StringStu2008-08-13T19:05:42Z2008-08-13T19:05:42Z<p>Yes, it depends on language, since string storage differs between languages.</p>
<ul>
<li>Pascal-type strings: Length = 0.</li>
<li>C-style strings: [0] == 0. </li>
<li>.NET: .IsNullOrEmpty.</li>
</ul>
<p>Etc. </p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string/10234#102342Answer by Keith for Checking for string contents? string Length Vs Empty StringKeith2008-08-13T19:05:54Z2008-08-13T19:05:54Z<p>In .Net:</p>
<pre><code>string.IsNullOrEmpty( nystr );
</code></pre>
<p>strings can be null, so .Length sometimes throws a NullReferenceException</p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string/10235#102350Answer by Vaibhav for Checking for string contents? string Length Vs Empty StringVaibhav2008-08-13T19:06:38Z2008-08-13T19:06:38Z<p>Actually, IMO the best way to determine is the IsNullOrEmpty() method of the string class.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.string.isnullorempty." rel="nofollow">http://msdn.microsoft.com/en-us/library/system.string.isnullorempty.</a></p>
<p>Update: I assumed .Net, in other languages, this might be different.</p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string/10250#102505Answer by Derek Park for Checking for string contents? string Length Vs Empty StringDerek Park2008-08-13T19:12:19Z2008-08-13T19:12:19Z<p>In languages that use C-style (null-terminated) strings, comparing to <code>""</code> will be faster. That's an O(1) operation, while taking the length of a C-style string is O(n).</p>
<p>In languages that store length as part of the string object (C#, Java, ...) checking the length is also O(1). In this case, directly checking the length is faster, because it avoids the overhead of constructing the new empty string.</p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string/10283#102831Answer by bpapa for Checking for string contents? string Length Vs Empty Stringbpapa2008-08-13T19:30:28Z2008-08-13T19:49:48Z<p>In Java 1.6, the String class has a new method <a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html#isEmpty()" rel="nofollow" title="I/O management and disk scheduling">isEmpty</a> </p>
<p>There is also the Jakarta commons library, which has the <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/StringUtils.html#isBlank()" rel="nofollow" title="Inside Windows Vista Kernel">isBlank</a> method. Blank is defined as a string that contains only whitespace.</p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string/10294#102940Answer by GaryF for Checking for string contents? string Length Vs Empty StringGaryF2008-08-13T19:35:37Z2008-08-13T19:35:37Z<blockquote>
<p>In this case, directly checking the length is faster, because it avoids the overhead of constructing the new empty string.</p>
</blockquote>
<p>@DerekPark: That's not always true. "" is a string literal so, in Java, it will almost certainly already be interned.</p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string/10305#103050Answer by Mark Harrison for Checking for string contents? string Length Vs Empty StringMark Harrison2008-08-13T19:51:33Z2008-08-13T19:51:33Z<p>For C strings,</p>
<pre><code>if (s[0] == 0)
</code></pre>
<p>will be faster than either</p>
<pre><code>if (strlen(s) == 0)
</code></pre>
<p>or</p>
<pre><code>if (strcmp(s, "") == 0)
</code></pre>
<p>because you will avoid the overhead of a function call.</p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string/10306#103060Answer by Nathan Fellman for Checking for string contents? string Length Vs Empty StringNathan Fellman2008-08-13T19:52:16Z2008-08-13T19:56:15Z<blockquote>
<p>In languages that use C-style (null-terminated) strings, comparing to "" will be faster</p>
</blockquote>
<p>Actually, it may be better to check if the first char in the string is '\0':</p>
<pre><code>char *mystring;
/* do something with the string */
if ((mystring != NULL) && (mystring[0] == '\0')) {
/* the string is empty */
}
</code></pre>
<p>In Perl there's a third option, that the string is undefined. This is a bit different from a NULL pointer in C, if only because you don't get a segmentation fault for accessing an undefined string. </p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string/10312#103120Answer by Derek Park for Checking for string contents? string Length Vs Empty StringDerek Park2008-08-13T20:00:55Z2008-08-13T20:00:55Z<p>@Nathan</p>
<blockquote>
<p>Actually, it may be better to check if the first char in the string is '\0':</p>
</blockquote>
<p>I almost mentioned that, but ended up leaving it out, since calling <code>strcmp()</code> with the empty string and directly checking the first character in the string are both O(1). You basically just pay for an extra function call, which is pretty cheap. If you <em>really</em> need the absolute best speed, though, definitely go with a direct first-char-to-0 comparison.</p>
<p>Honestly, I always use <code>strlen() == 0</code>, because I have <em>never</em> written a program where this was actually a measurable performance issue, and I think that's the most readable way to express the check.</p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string/10902#109021Answer by pzycoman for Checking for string contents? string Length Vs Empty Stringpzycoman2008-08-14T11:26:53Z2008-08-14T11:58:15Z<p><code>String.IsNullOrEmpty()</code> only works on .net 2.0 and above, for .net 1/1.1, I tend to use:</p>
<pre><code>if (inputString == null || inputString == String.Empty)
{
// String is null or empty, do something clever here. Or just expload.
}
</code></pre>
<p>I use String.Empty as opposed to "" because "" will create an object, whereas String.Empty wont - I know its something small and trivial, but id still rather not create objects when I dont need them! (<a href="http://blogs.msdn.com/brada/archive/2003/04/22/49997.aspx" rel="nofollow">Source</a>)</p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string/163570#1635700Answer by Andy Lester for Checking for string contents? string Length Vs Empty StringAndy Lester2008-10-02T17:32:08Z2008-10-02T17:32:08Z<p>Again, without knowing the language, it's impossible to tell.</p>
<p>However, I recommend that you choose the technique that makes the most sense to the maintenance programmer that follows and will have to maintain your work.</p>
<p>I'd recommend writing a function that explicitly does what you want, such as</p>
<pre><code>#define IS_EMPTY(s) ((s)[0]==0)
</code></pre>
<p>or comparable. Now there's no doubt at is you're checking.</p>