Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question already has an answer here:

I am unsure of which of these ways is faster to use multiple times, testing with a lot of string variables.
Which of these is faster to use for checking if the string is just whitespace?

if (str.trim().length > 0) {

}

Or

if (str.trim() !== '') {

}
share|improve this question
3  
It won't make a difference. Before arguing otherwise, please construct a jfperf test-case. Then realize any such microbenchmarks - even if they show a "big difference" - are usually completely irrelevant in a larger context. – user166390 Feb 27 at 4:21
Thank you! I've never heard of this site before. – yentup Feb 27 at 4:24

marked as duplicate by pst, luser droog, X.L.Ant, Roman C, Christoph Feb 27 at 8:36

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 7 down vote accepted

Well, why not test it? http://jsperf.com/empty-string-comparison2

In terms of calculations per second, they differ by less than 1% (at least on Chromium). Unless you're testing millions of strings every second, I wouldn't worry about it.

share|improve this answer

The short answer is "benchmark and find out!". If you do this, you can also try using a regexp and see how fast that is:

if (str.match(/^\s*$/))
share|improve this answer
Short answer or comment .. about the same. – user166390 Feb 27 at 4:23
2  
Since we're preoptimizing, shouldn't this be /^\s*$/.test(str)? Surely it's faster to return a boolean than a result array! ;) – kojiro Feb 27 at 4:30

According to this fast test regular expression as Alex D suggested is faster.

string = "   l   l l sfsf  __ ";
d = new Date().getTime();
for(var i = 0; i < 900000; i++){
    if (string.trim().length > 0) continue;
}
d1 = new Date().getTime() - d;
alert(d1);
d = new Date().getTime();
for(var i = 0; i < 900000; i++){
    if (string.trim() !== '') continue;
}
d1 = new Date().getTime() - d;
alert(d1);
d = new Date().getTime();
for(var i = 0; i < 900000; i++){
    if (string.match(/^\s*$/)) continue;
}
d1 = new Date().getTime() - d;
alert(d1);
share|improve this answer

I believe String Lenght comparison is faster as compare to comparison of two strings.

share|improve this answer
2  
Why do you think so? – Daniil Feb 27 at 4:17
see my below answer – Manish Rawat Feb 27 at 4:55
<script>
    var s1 = '  ';
    var s2 = '  ';
    var benchmarkCount = 10000000;
    function testStringComparison() {
        var t = new Date();
        var i = 0;
        for (var i = 0; i < benchmarkCount; i++) {
            if (s1.trim().length == s2.trim().length) {
                i++;
            }
        }
        t = (new Date()) - t;
        document.writeln("testStringComparison completed");
        document.writeln(t);
    }

    function testStringLenght() {
        var t = new Date();
        var i = 0;
        for (var i = 0; i < benchmarkCount; i++) {
            if (s1.trim() == s1.trim()) {
                i++;
            }
        }
        t = (new Date()) - t;
        document.writeln("testStringLenght completed");
        document.writeln(t);
    }


    function startBenchmark() {
        testStringComparison(); 
        testStringLenght();
    }

    setTimeout(startBenchmark, 1000);

</script>
share|improve this answer
Use edit instread of posting new answer – Daniil Feb 27 at 5:24

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