Checking for string contents? string Length Vs Empty String - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T03:57:38Z http://stackoverflow.com/feeds/question/10230 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string 4 Checking for string contents? string Length Vs Empty String Haydar 2008-08-13T19:03:27Z 2008-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#10233 12 Answer by Stu for Checking for string contents? string Length Vs Empty String Stu 2008-08-13T19:05:42Z 2008-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#10234 2 Answer by Keith for Checking for string contents? string Length Vs Empty String Keith 2008-08-13T19:05:54Z 2008-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#10235 0 Answer by Vaibhav for Checking for string contents? string Length Vs Empty String Vaibhav 2008-08-13T19:06:38Z 2008-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#10250 5 Answer by Derek Park for Checking for string contents? string Length Vs Empty String Derek Park 2008-08-13T19:12:19Z 2008-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#10283 1 Answer by bpapa for Checking for string contents? string Length Vs Empty String bpapa 2008-08-13T19:30:28Z 2008-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#10294 0 Answer by GaryF for Checking for string contents? string Length Vs Empty String GaryF 2008-08-13T19:35:37Z 2008-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#10305 0 Answer by Mark Harrison for Checking for string contents? string Length Vs Empty String Mark Harrison 2008-08-13T19:51:33Z 2008-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#10306 0 Answer by Nathan Fellman for Checking for string contents? string Length Vs Empty String Nathan Fellman 2008-08-13T19:52:16Z 2008-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) &amp;&amp; (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#10312 0 Answer by Derek Park for Checking for string contents? string Length Vs Empty String Derek Park 2008-08-13T20:00:55Z 2008-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#10902 1 Answer by pzycoman for Checking for string contents? string Length Vs Empty String pzycoman 2008-08-14T11:26:53Z 2008-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#163570 0 Answer by Andy Lester for Checking for string contents? string Length Vs Empty String Andy Lester 2008-10-02T17:32:08Z 2008-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>