「JavaScript入門」複数の空白スペースを一つに置換する

JSコード
function mergeSpaceFunc(str) {
str=str.replace(/(\s| )+/g,’ ');
return str;
}

JavaScript

Posted by arkgame