「javaScript」正規表現で前後の空白を取り除く方法
1.全ての空白を取り除く
str = str.replace(/\s+/g,"");
2.両端の空白を取り除く
str = str.replace(/^\s+|\s+$/g,"");
3.左側の空白を取り除く
str=str.replace( /^\s*/, ");
4.右側の空白を取り除く
str=str.replace(/(\s*$)/g, “");
Coding Changes the World
1.全ての空白を取り除く
str = str.replace(/\s+/g,"");
2.両端の空白を取り除く
str = str.replace(/^\s+|\s+$/g,"");
3.左側の空白を取り除く
str=str.replace( /^\s*/, ");
4.右側の空白を取り除く
str=str.replace(/(\s*$)/g, “");