Nodejs String Trim trimToLength(m)

Here you can find the source of trimToLength(m)

Method Source Code

String.prototype.trimToLength = function(m) {
  return (this.length > m) ? jQuery.trim(this).substring(0, m).split(' ').slice(0, -1).join(' ') : this.replace('"', '');
};

Related

  1. trimStart(s)
    String.prototype.trimStart = function(s) {
        return this.replace(new RegExp("^" + s + "+", "gm"), "");
    
  2. trimString_trim()
    String.prototype.trim = function String_trim()
      this.replace(/^\s+/m, '').replace(/\s+$/m, '');
    
  3. trimTailChars(c)
    String.prototype.trimTailChars = function(c){
      var idx, len = this.length;
      var tmp = this;
      while(len--){
        idx = tmp.lastIndexOf(c);
        if(idx == -1) {
          break;
        tmp = tmp.substring(0,idx);
    ...
    
  4. trimToLength(m)
    String.prototype.trimToLength = function(m) {
      return (this.length > m) 
        ? jQuery.trim(this).substring(0, m).split(" ").slice(0, -1).join(" ") + "..."
        : this;
    };
    
  5. trimToLength(m)
    String.prototype.trimToLength = function(m) {
      return (this.length > m) 
        ? jQuery.trim(this).substring(0, m).split(" ").slice(0, -1).join(" ") + "..."
        : this;
    };
    
  6. trimToPx(length)
    String.prototype.trimToPx = function(length)
        var tmp = this;
        var trimmed = this;
        if (tmp.visualLength() > length)
            trimmed += "...";
            while (trimmed.visualLength() > length)
                tmp = tmp.substring(0, tmp.length-1);
                trimmed = tmp + "...";
        return trimmed;
    
  7. trimTrailZeroes()
    String.prototype.trimTrailZeroes = function() {
        return this.replace(/(.\d*?)0+$/, "$1").replace(/\.$/, "");
    };
    
  8. trim_(str)
    var trim_ = function (str) {
        return str.replace(/(^\s*)|(\s*$)/g, "");
    };
    
  9. trimfast()
    String.prototype.trimfast = function() {
      var  str = this.replace(/^\s\s*/, ''),
        ws = /\s/,
        i = this.length;
      while (ws.test(this.charAt(--i)));
      return str.slice(0, i + 1);
    };
    (function($){
      $.fn.trimval = function() {
    ...