整理字串的方法

2021-10-01 08:40:59 字數 1482 閱讀 3213

hello,everyone !

想以乙個輕鬆愉悅的心情來開始我的每一篇文章。

這是每一次的整理和縮影,希望大家可以發表意見,促進成長。

原文在此,文章借鑑於

一.startswith():判斷字串是否以 xx 開頭

let url = '';

console.log(url.startswith('http')); // true

二.endswith():判斷字串是否以 xx 結尾
let file = 'index.html';

console.log(file.endswith('html')); // true

三.includes:判斷字串中是否包含 xx
let str = 'liaoke';

console.log(str.includes('ao')); // true

四.repeat():拷貝n份

console.log(title.repeat(100));

五.padstart() / padend():

padstart()用於頭部補全,

padend()用於尾部補全;

第乙個引數用來指定字串的最小長度,

第二個引數是用來補全的字串

//  "2030111111"

let y1 = '2030'.padend(10, '1');

// "2030-11-22"

let y2 = '11-22'.padstart(10, '2030-mm-dd');

console.log(y1, y2);

六.模板字串:

1.模板字串用反引號(`)包含,變數用${}括起來; 在開發中使用是非常靈活的

let name = '小煤球';

let *** = '公';

let result = `我叫 $ , 我是 $ 的`;

console.log(result);

// 我叫 小煤球 , 我是 公 的

2. 模板字串遍歷插入
let darr =['小煤球',1,'吃喝玩樂'];

let as=darr.map(function(value)`

});console.log(as)

let div=document.queryselector("#box")

div.innerhtml=as.join('');

3.模板字串實現原理
let name = '小煤球'; 

let *** = '公';

let result = `我叫 $ , 我是 $ 的`;

result = result.replace(/\$]*)}/g);

console.log(result);

js 字串相關方法整理

一.字串切割與提取 1.slice start,end 兩個引數可正可負,負值代表從右擷取 var mystr hello world var slicestr1 mystr.slice 3 ld var slicestr2 mystr.slice 3,1 ld var slicestr3 myst...

字串 簡單 1544 整理字串

題目 給你乙個由大小寫英文本母組成的字串 s 乙個整理好的字串中,兩個相鄰字元 s i 和 s i 1 其中 0 i s.length 2 要滿足如下條件 若 s i 是小寫字元,則 s i 1 不可以是相同的大寫字元。若 s i 是大寫字元,則 s i 1 不可以是相同的小寫字元。請你將字串整理好...

js字串常用方法詳細整理

1 concat 合併字串 var a hello var b world var c a.concat b console.log c c hello world 2 indexof 返回字串中的字元出現的位置 從左到右搜尋 1 var a hello var b a.indexof l cons...