JS 去字串空格

2022-09-15 18:57:12 字數 511 閱讀 8913

str為要去除空格的字串:

去除所有空格:

str = str.replace(/\s+/g,"");

去除兩頭空格:

str = str.replace(/^\s+|\s+$/g,"");

去除左空格:

str=str.replace( /^\s*/, '');

去除右空格:

str=str.replace(/(\s*$)/g, "");

script language="j**ascript">

訪問yaosansi.com

去除所有空格:

str = str.replace(/\s+/g,"");

去除兩頭空格:

str = str.replace(/^\s+|\s+$/g,"");

去除空格(timesheet用過)

arg0=arg0.replace(/\s+$|^\s+/g,"");

js去除字串空格

方法一 使用replace正則匹配的方法 去除所有空格 str str.replace s g,去除兩頭空格 str str.replace s s g,去除左空格 str str.replace s 去除右空格 str str.replace s g,str為要去除空格的字串,例項如下 var s...

js去除字串空格?

方法一 使用replace正則匹配的方法 去除所有空格 str str.replace s g,去除兩頭空格 str str.replace s s g,去除左空格 str str.replace s 去除右空格 str str.replace s g,str為要去除空格的字串,例項如下 var s...

JS去除字串空格

js去除字串空格 var str asd dasd s d sad asd asc 方法一 使用replace正則匹配 去除所有空格 console.log str.replace s g,asddasdsdsadasdasc 去除兩頭空格 console.log str.replace s s g...