字符串的拓展
模板字符串
console.log(` \` `);
//在模板字符串中如果需要寫(xiě)一個(gè)字符反點(diǎn)豺型,則要在反點(diǎn)前面加上\
let str='hellow';
console.log(str.includes("o"));//true
console.log(str.includes("a"));//false
// 查找指定字符有返回值
// 如果能找到返回true缸剪,找不到返回false
console.log(str.startsWith("h"));//true
console.log(str.startsWith("he"));//true
console.log(str.startsWith("hel"));//true
console.log(str.startsWith("helo"));//false
console.log(str.startsWith("o"));//false
console.log(str.startsWith("w"));//false
// 判斷是否以指定字符開(kāi)頭返回值是布爾值
// 是返回TRUE
// 不是返回false
console.log(str.endsWith("w"));
console.log(str.endsWith("ow"));
console.log(str.endsWith("oll"));
console.log(str.endsWith("ll"));
// 判斷是否以指定字符結(jié)尾返回值是布爾值
// 是返回TRUE
// 不是返回false
console.log(str.repeat(1));
console.log(str.repeat(2));
console.log(str.repeat(3));
// 將原字符串重復(fù)復(fù)制指定次數(shù)雪情,并將生成的新字符串返回
let str1 = ' a b c d e f ';
console.log(str1.trim());//刪除首尾空格
let str1 = ' a b c d e f ';
console.log(str1.trimStart());//刪除首位空格
let str1 = ' a b c d e f ';
console.log(str1.trimEnd());//刪除末位空格