ES6 字符串操作 includes(), startsWith

2018-08-23  本文已影响0人  sunxiaochuan

正文

传统上,JavaScript 中只有 indexOf 方法可用来确定一个字符串是否包含在另一个字符串中。ES6 又提供了 3 种新方法。

var s = 'Hello World!';

s.startsWith('Hello') // true
s.endsWith('!') // true
s.includes('o') // true
var s = 'Hello World!';

s.startsWith('World',6) // true
s.endsWith('Hello',5) // true
s.includes('Hello',6) // false

上面的代码表示,使用第 2 个参数 n 时,endsWith 的行为与其他两个方法有所不同。它针对前 n 个字符,而其他两个方法针对从第 n 个位置直到字符串结束的字符。

出处

上一篇 下一篇

猜你喜欢

热点阅读