Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a short way to find the longest string in a string array?

Something like arr.Max(x => x.Length);?

share|improve this question
In the time you asked this question you could've written the function yourself – Hannesh Jun 29 '11 at 13:22
I think you are asking something like LINQ am I right ? As I see most of the answers give you string lenght comparison but Do you want to get the item with any other property or just with string lenght ? – mcaaltuntas Jun 29 '11 at 13:43

6 Answers

up vote 12 down vote accepted
var longest = arr.sort(function (a, b) { return b.length - a.length; })[0];

Probably more efficient, but only available since Javascript 1.8/ECMAScript 5 and not available by default in older browsers:

var longest = arr.reduce(function (a, b) { return a.length > b.length ? a : b; });
share|improve this answer
2  
Ooooh, that is pretty :) – mplungjan Jun 29 '11 at 14:04

I would do something like this

var arr = ['first item', 'second item is longer than the third one', 
           'third longish item'];

var lgth = 0;
var longest;

for(var i=0; i < arr.length; i++){
    if(arr[i].length > lgth){
        var lgth = arr[i].length;
        longest = arr[i];
    }      
} 

alert(longest);

http://jsfiddle.net/jasongennaro/MLqLq/

share|improve this answer
1  
Why the -1? It works. – Jason Gennaro Jun 29 '11 at 13:44
var arr = [ 'fdgdfgdfg', 'gdfgf', 'gdfgdfhawsdgd', 'gdf', 'gdfhdfhjurvweadsd' ];
arr.sort(function (a, b) { return b.length - a.length })[0];
share|improve this answer
Oh man, 44 seconds too late! :-D – deceze Jun 29 '11 at 13:36
1  
@Deceze but you actually stored the var ;) – mplungjan Jun 29 '11 at 13:41

Using Array.prototype - (sort is similar to what was posted by @katsPaugh and @deceze while I was doing a fiddle)

DEMO HERE

var arr = [
    "2 --",
    "3 ---",
    "4 ----",
    "1 -",
    "5 -----"
];

Array.prototype.longest=function() {
    return this.sort(
      function(a,b) {  
        if (a.length > b.length) return -1;
        if (a.length < b.length) return 1;
          return 0
      }
    )[0];
}
alert(arr.longest());    
share|improve this answer

This is really simple buggy code I have written 5 minutes ago. I havent time to fix bugs but if you get the idea you can change and use it.

Array.prototype.MaxBy = function(fn) {        
    var max = 0;
    var element;
    for (var i = 0; i < this.length; i++) {
        var ret = fn(this[i]);
        if (ret > max) {
            max = ret;
            element = this[i];
        }
    }
    return element;
};

function showOldestPerson() {
    var array = [{ Name: "cihat", Age: 28 }, { Name: "Ali", Age: 30 }, { Name: "Kutlu", Age: 27}];

    var person = array.MaxBy(function(item) {
        return item.Age;
    });

    alert(person.Name);
}
share|improve this answer

I was inspired of Jason's function and made a little improvements to it and got as a result rather fast finder:

function timo_longest(a) {
  var c = 0, d = 0, l = 0, i = a.length;
  if (i) while (i--) {
    d = a[i].length;
    if (d > c) {
      l = i; c = d;
    }
  }
  return l;
}
arr=["First", "Second", "Third"];
var longest = arr[timo_longest(arr)];

Speed results: http://jsperf.com/longest-string-in-array/5

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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