ホワイトスペースの除去

by yshrkn

JavaScript

/**
 * ホワイトスペースを取り除くメソッド、StringUtils.trimを作成してください
 */

var tabMixed = "	Boys,	be\tambitious!	";
var spaceMixed = " Boys, be ambitious! ";
var breakMixed = "\nBoys,\nbe\nambitious!";

var StringUtil = {
  trim: function(str) {
    return str.replace(/\s/g, '');
  }
}


console.log(StringUtil.trim(tabMixed));		// Boys,beambitious!
console.log(StringUtil.trim(spaceMixed));	// Boys,beambitious!
console.log(StringUtil.trim(breakMixed));	// Boys,beambitious!