Szöveg vágásnál sokan nem tőrödnek azzal, hogy szavakat vágnak ketté, pedig néha egy félbevágott szó kifejezetten csúnya, illetve előnytelen lehet.
Az alábbi kód szinte egy az egyben a PHP-Smarty-ból vet kód JavaScript implementációja:
if (typeof length == 'undefined') length = 80;
if (typeof etc == 'undefined') etc = '...';
if (!length) return '';
if (this.length <= length) return this.toString();
length -= etc.length;
if (break_words) {
return this.substr(0, length) + etc;
}
return this.substr(0, length+1).replace(/\s+?(\S+)?$/,'') + etc;
};
És akkor egy példa, hogy miről is van szó:
for (var i = 0; i < 60; i++) {
console.log( i, str.truncate(i) );
}