JavaScript 清除兩側(cè)空字符
提問(wèn)人:劉團(tuán)圓發(fā)布時(shí)間:2020-11-24
■知識(shí)點(diǎn)
ECMAScript5為String新增了trim()原型方法,用于從字符串中移除前導(dǎo)空字符、尾隨空字符和行終止符。該方法在表單處理中非常實(shí)用。
■實(shí)例設(shè)計(jì)
下面的代碼使用trim()方法快速清除掉字符串首尾空格,
var s = " abc def \r\n ";
s = s.trim ();
console.log("[" + s + "]"); //[abc def]
console.log(s.length); //7
繼續(xù)查找其他問(wèn)題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評(píng)論>>