美文网首页
字符串ES6新增-includes是否包含 / startsWi

字符串ES6新增-includes是否包含 / startsWi

作者: kino2046 | 来源:发表于2019-10-16 18:11 被阅读0次

手册地址:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/String

includes()

includes() 方法用于判断一个字符串是否包含在另一个字符串中,根据情况返回 true 或 false。


startsWith()

方法用来判断当前字符串是否以另外一个给定的子字符串开头,并根据判断结果返回 true 或 false。

语法:str.startsWith(searchString[, position])

        searchString

                要搜索的子字符串。

        position 可选

                在 str 中搜索 searchString 的开始位置,默认值为 0,也就是真正的字符串开头处。


endsWith()

endsWith()方法用来判断当前字符串是否是以另外一个给定的子字符串“结尾”的,根据判断结果返回 true 或 false。

语法:str.endsWith(searchString[, length])

        searchString

                要搜索的子字符串。

        length 可选

                作为 str 的长度。默认值为 str.length。


repeat()

把字符串重复多少次


模版字符串    `...`

连接字符串用

模板字符串的插值


相关文章

网友评论

      本文标题:字符串ES6新增-includes是否包含 / startsWi

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