Skip to content

Instantly share code, notes, and snippets.

@lifthrasiir
Created January 24, 2011 17:06
Show Gist options
  • Save lifthrasiir/793532 to your computer and use it in GitHub Desktop.
Save lifthrasiir/793532 to your computer and use it in GitHub Desktop.
var cutString = function(s, width, trail) {
if (typeof trail == 'undefined') trail = '…';
var w = 0;
for (var i = 0; i < s.length; ++i) {
// we approximate east-asian width using the most prevalent ideographic blocks
w += (s.charAt(i).match(/[\u3000-\u9fff\uac00-\ud7ff\uf900-\ufaff]/) ? 2 : 1);
if (w > width) return s.substring(0, i) + trail;
}
return s;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment