字串去空格函式有trim()(無引數,返回值去空格後的字串),trimstart()(別名trimleft()),trimend()(別名trimright())
trim()作用:trim() 方法會從乙個字串的兩端刪除空白字元。在這個上下文中的空白字元是所有的空白字元 (space, tab, no-break
space 等) 以及所有行終止符字元(如 lf,cr等)。
引數:無
返回值:去掉空格之後的字串
返回值 肯定就是方法處理的結果
trimend() 方法從乙個字串的末端移除空白字元。trimright() 是這個方法的別名。
trimstart() 方法從字串的開頭刪除空格。trimleft() 是此方法的別名。
字串的方法的返回值都是操作成功的字串或者其它,比如trim,padstart,replace,match等等
1doctype html
>
2<
html
lang
="en"
>
3<
head
>
4<
meta
charset
="utf-8"
>
5<
title
>trim()
title
>
6head
>
7<
body
>823
<
script
>
24//
var orig = ' foo ';
25//
console.log(orig.trim()); // 'foo'
2627
//另乙個 .trim() 例子,只從一邊刪除
2829
//var orig = 'foo ';
30//
console.log(orig.trim()); // 'foo'
3132
//trimstart()和trimleft()
33console.log(
'foo
'.trimstart());
34console.log(
'foo
'.trimleft());
35//
trimend()和trimright()
36console.log(
'foo
'.trimend());
37console.log(
'foo
'.trimright());
38script
>
39body
>
40html
>
JS字串常用方法(自) 8 字串查詢
字串查詢方法有6個,startswith searchstring,position endswith searchstring,length search regexp indexof searchvalue,fromindex lastindexof searchvalue,fromindex ...
JS字串常用方法(自) 5 字串分割
字串分割方法是split separator separator 分割符 分隔符是字串,可以是多個字元,返回值是分割成的陣列 split separator 作用 將字串分割成陣列 引數 separator 分割符 分隔符是字串,可以是多個字元 返回值 分割成的陣列 console.log fry ...
JS字串常用方法(自) 3 字串重複
字串重複的函式是repeat 作用是對字串進行重複,引數是count 重複次數 返回值是成功操作的字串。repeat 作用 對字串進行重複 引數 count 重複次數 返回值 重複操作之後的字串 console.log abc repeat 2 abcabc 1 doctype html 2 htm...