-
-
Save alekpopovic/05849bc72e2c9d1f9297 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function truncText (text, maxLength, ellipseText){ | |
ellipseText = ellipseText || '…'; | |
if (text.length < maxLength) | |
return text; | |
//Find the last piece of string that contain a series of not A-Za-z0-9_ followed by A-Za-z0-9_ starting from maxLength | |
var m = text.substr(0, maxLength).match(/([^A-Za-z0-9_]*)[A-Za-z0-9_]*$/); | |
if(!m) return ellipseText; | |
//Position of last output character | |
var lastCharPosition = maxLength-m[0].length; | |
//If it is a space or "[" or "(" or "{" then stop one before. | |
if(/[\s\(\[\{]/.test(text[lastCharPosition])) lastCharPosition--; | |
//Make sure we do not just return a letter.. | |
return (lastCharPosition ? text.substr(0, lastCharPosition+1) : '') + ellipseText; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment