ES6字符串的扩展方法 startsWith、endsWith、includes
程序员文章站
2022-03-01 14:53:56
...
const message = 'Error: foo is not defined.'
startsWidth(str,index):判断字符串在起始位置能否检测到指定文本,如果能,返回 true,否则,false
console.log(message.startsWith('Error')) //true
endsWidth(str,index):判断字符串在结束位置能否检测到指定文本,如果能,返回 true,否则,false
console.log(message.endsWith('.')) //true
includes(str,index):如果在字符串中能检测到指定文本,返回 true,否则,false
console.log(message.includes('foo')) //true
推荐阅读
-
ES6 字符串操作 includes(), startsWith(), endsWith() 函数
-
扩展ie中不兼容的startsWith,endsWith方法
-
Java中 startsWith() 方法和endsWith()方法判断字符串的前缀和后缀
-
ES6/07/Array的扩展方法,...扩展运算符,Array.from(),(arr.find(),arr.findIndex()和arr.includes())模板字符串,Set数据结构
-
es6字符串的扩展底层实现____startsWith
-
ES6 学习 字符串的扩展方法
-
2021-7-1 es6中字符串新增的includes()方法
-
ES6中的includes(), startsWith(), endsWith()
-
es6字符串的扩展底层实现____endsWith
-
javascript es6字符串的新增实例方法includes()、startWith()、endWith();判断一个字符串是否包含另一个字符串