JS字串常用方法(自) 3 字串重複

2022-03-23 13:02:47 字數 1050 閱讀 4543

字串重複的函式是repeat(),作用是對字串進行重複,引數是count(重複次數),返回值是成功操作的字串。

repeat()

作用:對字串進行重複

引數:count(重複次數)

返回值:重複操作之後的字串

console.log('abc'.repeat(2));//'abcabc'

1

doctype html

>

2<

html

lang

="en"

>

3<

head

>

4<

meta

charset

="utf-8"

>

5<

title

>repeat()

title

>

6head

>

7<

body

>816

<

script

>

17//

console.log('abc'.repeat(0));

18//

console.log('abc'.repeat(1));

19//

console.log('abc'.repeat(2));//'abcabc'

2021

22//

手寫repeat方法

23string.prototype.repeat_my

=function

(count)

29return

ans_str;

30};

31console.log(

'abc

'.repeat_my(

4));

32//

'abc'.repeat_my(2);

3334

script

>

35body

>

36html

>

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字串常用方法(自) 1 字串去空格

字串去空格函式有trim 無引數,返回值去空格後的字串 trimstart 別名trimleft trimend 別名trimright trim 作用 trim 方法會從乙個字串的兩端刪除空白字元。在這個上下文中的空白字元是所有的空白字元 space,tab,no break space 等 以及...