ES6 字符串操作 includes(), startsWith(), endsWith() 函数
程序员文章站
2022-07-16 14:19:46
...
正文
传统上,
JavaScript
中只有indexOf
方法可用来确定一个字符串是否包含在另一个字符串中。ES6 又提供了 3 种新方法。
-
includes()
:返回布尔值,表示是否找到了参数字符串。 -
startsWith()
:返回布尔值,表示参数字符串是否在源字符串的头部。 -
endsWith()
:返回布尔值,表示参数字符串是否在源字符串的尾部。
var s = 'Hello World!';
s.startsWith('Hello') // true
s.endsWith('!') // true
s.includes('o') // true
- 这 3 个方法都支持第 2 个参数,表示开始搜索的位置。
var s = 'Hello World!';
s.startsWith('World',6) // true
s.endsWith('Hello',5) // true
s.includes('Hello',6) // false
上面的代码表示,使用第 2 个参数
n
时,endsWith
的行为与其他两个方法有所不同。它针对前n
个字符,而其他两个方法针对从第n
个位置直到字符串结束的字符。
出处
- 代码来源:《ES 6 标准入门》(第2版) -- 阮一峰 著 ---- 第4章 字符串的扩展
上一篇: js includes函数
下一篇: 《C++ primer》第一章 开始
推荐阅读
-
ES6 字符串操作 includes(), startsWith(), endsWith() 函数
-
js字符串startsWith和endsWith和includes
-
ES6模板字符串、startsWith()、endsWith()、repeat()
-
字符串函数--startsWith--endsWith--toLowerCase--toUpperCase学习
-
ES6:includes(), startsWith(), endsWith()
-
es6 includes(), startsWith(), endsWith()
-
ES6中的includes(), startsWith(), endsWith()
-
ES6 --- includes、startsWith和endsWith
-
ES6字符串的扩展方法startsWith、endsWith、includes
-
ES6中新增的字符串方法 includes startsWith endsWith repeat padStart padEnd trimStart trimEnd ...