js去除字串頭尾空格

2021-10-11 21:03:12 字數 527 閱讀 1645

// js去除頭尾空格

let str = " 2020-11-2 "

function trim(str)

}return str.slice(start,end)

}console.log(trim(str))

slice(start, end)方法可提取字串的某個部分,並以新的字串返回被提取的部分。

使用 start(包含) 和 end(不包含) 引數來指定字串提取的部分。

start 引數字串中第乙個字元位置為 0, 第二個字元位置為 1, 以此類推,如果是負數表示從尾部擷取多少個字串

。end 引數如果為負數,-1 指字串的最後乙個字元的位置,-2 指倒數第二個字元,以此類推。

前往下一道程式設計題:

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...