js処理データの中のスペース
322 ワード
str :
:
str = str.replace(/\s+/g,"");
:
str = str.replace(/^\s+|\s+$/g,"");
:
str=str.replace( /^\s*/, '');
:
str=str.replace(/(\s*$)/g, "");