includes()、startsWith()和endsWith()
程序员文章站
2022-03-08 20:49:28
...
includes()、startsWith()和endsWith()
includes():返回布尔值,表示是否找到了参数字符串。
startsWith():返回布尔值,表示参数字符串是否在原字符串的头部。
endsWith():返回布尔值,表示参数字符串是否在原字符串的尾部。
let s ='He1lo world!' ;
s. startsWith( 'Hello') // true
s. endsWith('!') // true
s. includes('o') // true
let s ='He1lo world!' ;
s. startsWith( 'world',6) // true
s. endsWith('He1lo ',5) // true
s. includes('world',6) // true
注意:startsWith和includes的第二个参数表示从某个位置开始至最后,endsWith表示从前n个字符*
上一篇: 关于YII视图整合kindeditor如何扩展的方法
下一篇: es6 新增字符串方法及Symbol类型 includes startsWith endsWith repeat padStart padEnd字符模板
推荐阅读
-
Python startswith()和endswith() 方法原理解析
-
js中浏览器兼容startsWith 、endsWith 函数
-
除了indexOf和includes方法,不妨来了解一下match方法
-
python startswith和endswith详解
-
C++如何实现python中的startswith和endswith
-
includes,startsWith,endsWith,find,findIndex 的应用与 indexOf
-
数组的includes方法和indexOf的区别
-
Python中startswith和endswith的用法
-
ES6 字符串操作 includes(), startsWith(), endsWith() 函数
-
扩展ie中不兼容的startsWith,endsWith方法