ES6-字符串扩展-includes(), startsWith(), endsWith()
程序员文章站
2022-03-08 20:48:28
...
ES5只有indexOf方法,可以用来确定一个字符串是否包含在另一个字符串中。ES6又提供了三种新方法。
includes():返回布尔值,表示是否找到了参数字符串;
startsWith():返回布尔值,表示参数字符串是否在查找字符串的头部;
endsWith():返回布尔值,表示参数字符串是否在查找字符串的尾部。
-
let s = 'Hello world!';
-
-
s.startsWith('Hello') // true
-
s.endsWith('!') // true
-
s.includes('o') // true
同时这三个方法都支持第二个参数,表示开始搜索的位置。
-
let s = 'Hello world!';
-
-
s.startsWith('world', 6) // true
-
s.endsWith('Hello', 5) // true
-
s.includes('Hello', 6) // false
上面代码表示,使用第二个参数n时,endsWith 的行为与其他两个方法有所不同,它针对的是前n个字符,而其他两个方法都是针对从第n个位置(不包含n)直到字符串结束。上一篇: 第二周与第三周学习笔记
下一篇: AngularJS 表单验证
推荐阅读
-
es6字符串的扩展底层实现____startsWith
-
es6字符串的扩展底层实现____includes
-
【C++实现python字符串函数库】二:字符串匹配函数startswith与endswith
-
python-字符串的startswith和endswith函数
-
includes,startsWith,endsWith,find,findIndex 的应用与 indexOf
-
ES6 字符串操作 includes(), startsWith(), endsWith() 函数
-
扩展ie中不兼容的startsWith,endsWith方法
-
Java中 startsWith() 方法和endsWith()方法判断字符串的前缀和后缀
-
js字符串startsWith和endsWith和includes
-
ES6模板字符串、startsWith()、endsWith()、repeat()