Nodejs String Trim trim()

Here you can find the source of trim()

Method Source Code

/**//from  ww  w.  jav  a 2s  .c o  m
 * @returns a new String without white spaces (space, tab) at beginning and at end.
 */
String.prototype.trim = function() {
   return this.replace(/^\s+|\s+$/g, "");
};

Related

  1. trim()
    String.prototype.trim = String.prototype.trim || function () {
      return this.replace( /^\s+|\s+$/g, '' );
    };
    
  2. trim()
    String.prototype.trim = function(){
      return this.replace(/^\s+/,"").replace(/\s+$/,"");
    var str="  aaaa    bbbb   ";
    str=str.trim();
    console.log(str);
    
  3. trim()
    String.prototype.trim = function(){
      return this.replace(/^\s*(\S*(\s+\S+)*)\s*$/, '$1');
    
  4. trim()
    String.prototype.trim = function() {
      return (this.replace(/^[\s\xA0]+/, "").replace(/[\s\xA0]+$/, ""));
    
  5. trim()
    String.prototype.trim = function() {
      return this.replace(/^\s+/, '').replace(/\s+$/, '');
    };
    function validPhoneNumber(phoneNumber){
      return phoneNumber.match(/^\(\d{3}\)\s\d{3}-\d{4}$/);
    console.log('    kia    '.trim());
    
  6. trim()
    function setKeyWord(){
          return true;
    function keyWordFocus(){
        return true;
    String.prototype.trim = function () {
       return this.replace(/^\s+|\s+$/g, "");
    };
    ...
    
  7. trim()
    String.prototype.trim = function() {
      return this.replace(/^\s*|\s*$/g,'');
    
  8. trim()
    function stringFilter(s) { 
      var pattern = new RegExp("[`%@#$^&=|\\[\\]<>/@#???&??|]") 
      var rs = ""; 
      for (var i = 0; i < s.length; i++) { 
        rs = rs+s.substr(i, 1).replace(pattern, ''); 
      return rs; 
    String.prototype.trim = function() {
    ...
    
  9. trim()
    String.prototype.trim = function () {
      return this.replace(/^\s+|\s+$/g, "");