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)+"...";
}
|
Does anyone have a more sophisticated solution/library for shortening strings with JavaScript, than the obvious one:
|
|||||
|
Now you can do:
if with 'more sophisticated' you mean: truncating at the last word boundary of a string, then this may be what you want:
now you can do:
|
|||||
|
|
All
The irony is I got that code snippet from Mozilla MDC. |
|||||||||||||||
|
|
Here's my solution, which has a few improvements over other suggestions:
It:
|
||||
|
|
|
Most modern Javascript frameworks (JQuery, Prototype, etc...) have a utility function tacked on to String that handles this. Here's an example in Prototype:
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. |
|||||
|
|
Firefox now supports a CSS solution as well.
|
|||
|
|
|
You can use the Ext.util.Format.ellipsis function if you are using Ext.js. |
|||
|
|
|
c_harm's answer is in my opinion the best. Please note that if you want to use
you will have to use a regexp object constructor rather than a literal. Also you'll have to escape the
|
|||
|
|