Trim text

/**
 * Removes leading and tailing whitespace(spaces, tabs, ...) 
 * from given string
 */
function trim (inputstring) {
  // first remove leading then tailing whitespaces 
  // before removing the trimmed string
  return inputstring.replace (/^\s+/, '').replace (/\s+$/, '');
}

 

Leave a Reply

Your email address will not be published. Required fields are marked *

 

This site uses Akismet to reduce spam. Learn how your comment data is processed.