ES6:includes(), startsWith(), endsWith()
程序员文章站
2022-03-08 22:50:28
...
includes(), startsWith(), endsWith()
- 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
个位置直到字符串结束。
推荐阅读
-
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()方法判断字符串的前缀和后缀