美文网首页
ES6 字符串操作 includes(), startsWith

ES6 字符串操作 includes(), startsWith

作者: sunxiaochuan | 来源:发表于2018-08-23 15:14 被阅读0次

正文

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

  • includes():返回布尔值,表示是否找到了参数字符串。
  • startsWith():返回布尔值,表示参数字符串是否在源字符串的头部。
  • endsWith():返回布尔值,表示参数字符串是否在源字符串的尾部。
var s = 'Hello World!';

s.startsWith('Hello') // true
s.endsWith('!') // true
s.includes('o') // true
  • 这 3 个方法都支持第 2 个参数,表示开始搜索的位置。
var s = 'Hello World!';

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

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

出处

  • 代码来源:《ES 6 标准入门》(第2版) -- 阮一峰 著 ---- 第4章 字符串的扩展

相关文章

网友评论

      本文标题:ES6 字符串操作 includes(), startsWith

      本文链接:https://www.haomeiwen.com/subject/fxzpiftx.html