Nodejs String Trim trim()

Here you can find the source of trim()

Method Source Code

/**//from w w w. j a  v  a  2 s .c o  m
 * @fileOverview The String extensions library.
 * @name String Extensions
 *
 * @author Burak Yigit KAYA <byk@ampliovitam.com>
 * @version 1.0
 */

/**
 * Trims the whitespace around the text.
 *
 * @return {String} The trimmed string.
 */
if (!String.prototype.trim)
String.prototype.trim = function()
{
   return this.replace(/^[\s]+|[\s]+$/g, "");
};

Related

  1. trim()
    String.prototype.trim = function () {
      return this.replace(/^\s+|\s+$/g, "");
    
  2. trim()
    String.prototype.trim = function() {
      var start = 0, end = this.length - 1;
      while (start <= end && this.charAt(start) == " ") {
        start++;
      while (start <= end && this.charAt(end) == " ") {
        end--;
      return this.substring(start, end + 1);
    ...
    
  3. trim()
    String.prototype.trim = function(){
      return this.replace(/^\s+|\s+$/g, "");
    };
    
  4. trim()
    String.prototype.trim = function() 
      var  str = this.replace(/^\s\s*/, ''),
        ws = /\s/,
        i = str.length;
      while (ws.test(str.charAt(--i)));
      return str.slice(0, i + 1);
    
  5. trim()
    String.prototype.trim = function() {
        return this.replace(/^\s*/, "").replace(/\s*$/, "");
    
  6. trim()
    String.prototype.trim=function(){
        return this.replace(/(^\s*)|(\s*$)/g, "");
    function getPercent(value, total) {
        value = parseFloat(value)
        total = parseFloat(total)
        if (isNaN(value) || isNaN(total)) {
            return 0;
        return total <= 0 ? 0 : (Math.round(value / total * 10000) / 100.00);
    
  7. trim()
    String.prototype.trim = function()
            return String(this).replace(/^\s+|\s+$/g, '');
    };
    
  8. trim()
    String.prototype.trim = function() {
      return this.ltrim().rtrim();
    
  9. trim()
    String.prototype.trim = function() {
      return this.replace(/(^\s+|\s+$)/g, '');
    };