欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

javascript es6字符串的新增实例方法includes()、startWith()、endWith();判断一个字符串是否包含另一个字符串

程序员文章站 2022-03-08 22:49:40
...

es5中,我们判断一个字符串中是否包含另一个字符串,只有一种indexOf()方法。
在es6中,新增了实例方法includes()、startWith()、endWith()可以用来判断一个字符串是否包含另一个字符串。
includes()—返回布尔值,表示是否找到参数字符串。
startWith()—返回布尔值,表示是否在原字符串头部找到参数字符串。
endWith()—返回布尔值,表示是否在原字符串的尾部找到参数字符串。

const {log} = console
let s = 'Hello World!';
log(s.includes('Hello'));//true
log(s.startsWith('Hello'));//true
log(s.endsWith('World!'));//true

这三种方法都支持第二个参数,第二个参数表示开始搜索的位置。

const {log} = console
let s = 'Hello World!';
log(s.includes('Hello',5));//false
log(s.startsWith('World',6));//true
log(s.endsWith('Hello',5));//true

有第二个参数n的时候,endWith()是针对前n个字符,其他两种方法是从n开始到字符串结束。

相关标签: JavaScript