字符串的新增方法→startsWith() endsWith() Includes() repeat()
程序员文章站
2022-03-01 14:54:38
...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>字符串的新增方法</title>
</head>
<body>
<script>
const id = '43062319980711477x';
const fan = 'I love LoMan.';
/*
startsWith():返回布尔值,表示参数字符串是否在原字符串的头部。
*/
console.log(id.startsWith('43'));//true
console.log(id.startsWith('3'));//false
//设想:我现在想要知道第二位是不是3,你可以像下面这样做
console.log(id.startsWith('3', 1));//true
//startsWith方法是大小写敏感的。
console.log(fan.startsWith('I'));//true
console.log(fan.startsWith('i'));//false
/*
endsWith():返回布尔值,表示参数字符串是否在原字符串的尾部。
*/
//设想:你想知道id变量后面是不是x,简单做法可以这样。
console.log(id.endsWith('x'))//true
//endsWith方法也可以查询字符串的位置,从左到右数从1开始数。
console.log(id.endsWith('30', 3))//true
console.log(id.endsWith('623', 6))//true
console.log(fan.endsWith('I', 1))//true
/*
includes():返回布尔值,表示是否找到了参数字符串。
注意:针对从第n个位置直到字符串结束
*/
console.log(fan.indexOf('LoMan') !== -1);//true
console.log(fan.indexOf('LoMan'));//7
console.log(fan.includes('LoMan'));//true
//设想:你想知道第7位开始之后(含第7位)有没有LoMan
console.log(fan.includes('LoMan', 7));//true
//设想:你想知道第8位开始之后有没有LoMan
console.log(fan.includes('LoMan', 8));//false
/*
repeat方法返回一个新字符串,表示将原字符串重复n次。
*/
console.log('xyz'.repeat(2));//xyzxyz
// const heading=`${`=`.repeat(5)} ${fan} ${'='.repeat()}
//体验一下字符串对齐
function padder(string,length=100){
return `${` `.repeat(Math.max(length-string.length,0))} ${string}`
}
console.log(padder(id));
console.log(padder(fan));
</script>
</body>
</html>
推荐阅读
-
Java中 startsWith() 方法和endsWith()方法判断字符串的前缀和后缀
-
2021-7-1 es6中字符串新增的includes()方法
-
javascript es6字符串的新增实例方法includes()、startWith()、endWith();判断一个字符串是否包含另一个字符串
-
ES6字符串的扩展方法startsWith、endsWith、includes
-
ES6中新增的字符串方法 includes startsWith endsWith repeat padStart padEnd trimStart trimEnd ...
-
ES6字符串扩展方法(startsWith、endsWith、includes)
-
es6 新增字符串方法及Symbol类型 includes startsWith endsWith repeat padStart padEnd字符模板
-
字符串新增的 startsWith(), endsWith(),includes()三种实例化方法比较 ES6
-
字符串的扩展includes(), startsWith(), endsWith()
-
ES6语法篇:字符串新增的includes(), startsWith(), endsWith()三种实例化方法比较