es6 includes(), startsWith(), endsWith()
程序员文章站
2022-03-08 22:50:10
...
传统上,JavaScript 只有
indexOf
方法,可以用来确定一个字符串是否包含在另一个字符串中。ES6 又提供了三种新方法。
- includes():返回布尔值,表示是否找到了参数字符串。
- startsWith():返回布尔值,表示参数字符串是否在原字符串的头部。
- endsWith():返回布尔值,表示参数字符串是否在原字符串的尾部。
let s = 'Hello world!';
s.startsWith('Hello') // true
s.endsWith('!') // true
s.includes('o') // true
更多专业前端知识,请上【猿2048】www.mk2048.com
上一篇: Java实现把一个字符串反转输出的方法
下一篇: ES6新增的字符串方法
推荐阅读
-
Python startswith()和endswith() 方法原理解析
-
js中浏览器兼容startsWith 、endsWith 函数
-
python startswith和endswith详解
-
C++如何实现python中的startswith和endswith
-
includes,startsWith,endsWith,find,findIndex 的应用与 indexOf
-
Python中startswith和endswith的用法
-
ES6 字符串操作 includes(), startsWith(), endsWith() 函数
-
扩展ie中不兼容的startsWith,endsWith方法
-
Java的String类中的startsWith方法和endsWith方法
-
Java中 startsWith() 方法和endsWith()方法判断字符串的前缀和后缀