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

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)+"...";
}
share|improve this question
1  
What do you mean by "more sophisticated"? Functions that take word boundaries into account? – Residuum Jul 29 '09 at 10:49

8 Answers

up vote 48 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...
share|improve this answer
2  
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

Note that this only needs to be done for Firefox.

All other browsers support a CSS solution (see support table):

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

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

share|improve this answer
2  
Yep, Firefox sucks! – Josh Stodola Jul 29 '09 at 17:20
14  
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
Very good CSS approach. There might be a note, that this only works with a single line of text (as intended by white-space: nowrap;). When it comes to more than one line you're stuck with JavaScript. – insertusernamehere Aug 4 '12 at 8:41
show 1 more comment

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
share|improve this answer

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

share|improve this answer

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.

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

Firefox now supports a CSS solution as well.

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

You can use the Ext.util.Format.ellipsis function if you are using Ext.js.

share|improve this answer

c_harm's answer is in my opinion the best. Please note that if you want to use

"My string".truncate(n)

you will have to use a regexp object constructor rather than a literal. Also you'll have to escape the \S when converting it.

String.prototype.truncate =
    function(n){
        var p  = new RegExp("^.{0," + n + "}[\\S]*", 'g');
        var re = this.match(p);
        var l  = re[0].length;
        var re = re[0].replace(/\s$/,'');

        if (l < this.length) return re + '&hellip;';
    };
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.