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,''
));//asd dasd s d sad asd asc
//去除左空格
console.
log(str.
replace
(/^\s*/,''
));//asd dasd s d sad asd asc
//去除右空格
console.
log(str.
replace
(/(\s*$)/g,''
));// asd dasd s d sad asd asc
//方法二:使用str.trim();(只能去除左右空格)
console.
log(str.
trim()
);//asd dasd s d sad asd asc
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去除頭尾空格 let str 2020 11 2 function trim str return str.slice start,end console.log trim str slice start,end 方法可提取字串的某個部分,並以新的字串返回被提取的部分。使用 start 包含 和...