Does anyone have a more sophisticated solution/library for shortening strings with JavaScript, than the obvious one:

if(string.length > 25) {
    string = string.substring(0,24)+"...";
}
link|improve this question

40% accept rate
What do you mean by "more sophisticated"? Functions that take word boundaries into account? – Residuum Jul 29 '09 at 10:49
feedback

6 Answers

up vote 21 down vote accepted
String.prototype.trunc = 
      function(n){
          return this.substr(0,n-1)+(this.length>n?'…':'');
      };

Now you can do:

var s = 'not very long';
s.trunc(25); //=> not very long
s.trunc(5); //=> not...

if with 'more sophisticated' you mean: truncating at the last word boundary of a string, then this may be what you want:

String.prototype.trunc =
     function(n,useWordBoundary){
         var toLong = this.length>n,
             s_ = toLong ? this.substr(0,n-1) : this;
         s_ = useWordBoundary && toLong ? s_.substr(0,s_.lastIndexOf(' ')) : s_;
         return  toLong ? s_ + '…' : s_;
      };

now you can do:

s.trunc(11,true) //=>not very...
link|improve this answer
Should also consider having "hard" and "soft" limits, like, for example, if the string is longer than 500 character, truncate it to 400. This may be useful, when the user wants to see the whole text and clicks some link for it. If, as a result, you load just 1 or 2 chars more, it will look really ugly. – Maxim Sloyko Jul 29 '09 at 11:27
feedback

Note that this only needs to be done for Firefox. All other browsers support a CSS solution:

p {
    white-space: nowrap;
    width: 100%;                   /* IE6 needs any width */
    overflow: hidden;              /* "overflow" value must be different from "visible"*/ 
    -o-text-overflow: ellipsis;    /* Opera */
    text-overflow:    ellipsis;    /* IE, Safari (WebKit) */
}

The irony is I got that code snippet from Mozilla MDC.

link|improve this answer
2  
Yep, Firefox sucks! – Josh Stodola Jul 29 '09 at 17:20
7  
Firefox doesn't suck. – mwilcox Aug 1 '09 at 13:26
mattsnider.com/css/css-string-truncation-with-ellipsis to make it work with FF as well. – Neal Feb 9 '11 at 22:21
Wow this is a perfect solution for mobile Safari. Thank you! – samvermette Feb 21 '11 at 19:29
feedback

Here's my solution, which has a few improvements over other suggestions:

String.prototype.truncate = function(){
    var re = this.match(/^.{0,25}[\S]*/);
    var l = re[0].length;
    var re = re[0].replace(/\s$/,'');
    if(l < this.length)
        re = re + "&hellip;";
    return re;
}

// "This is a short string".truncate();
"This is a short string"

// "Thisstringismuchlongerthan25characters".truncate();
"Thisstringismuchlongerthan25characters"

// "This string is much longer than 25 characters and has spaces".truncate();
"This string is much longer&hellip;"

It:

  • Truncates on the first space after 25 characters
  • Extends the JavaScript String object, so it can be used on (and chained to) any string.
  • Will trim the string if truncation results in a trailing space;
  • Will add the unicode hellip entity (ellipsis) if the truncated string is longer than 25 characters
link|improve this answer
feedback

With a quick googling I found this... Can do?

link|improve this answer
feedback

Most modern Javascript frameworks (JQuery, Prototype, etc...) have a utility function tacked on to String that handles this.

Here's an example in Prototype:

'Some random text'.truncate(10);
// -> 'Some ra...'

This seems like one of those functions you want someone else to deal with/maintain. I'd let the framework handle it, rather than writing more code.

link|improve this answer
I don't think jQuery has anything for this. – alex Dec 18 '10 at 23:25
feedback

Firefox now supports a CSS solution as well.

p {
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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