美文网首页
js ES6 includes查找字符

js ES6 includes查找字符

作者: 小李不小 | 来源:发表于2020-10-26 10:51 被阅读0次

查找字符串是否包含 "Runoob":

var str = "Hello world, welcome to the Runoob。";
var n = str.includes("world");

输出结果:true

includes() 方法用于判断字符串是否包含指定的子字符串。
如果找到匹配的字符串则返回 true,否则返回 false。

注意: includes() 方法区分大小写。

var str = "Hello world, welcome to the Runoob。";
console.log(str.includes('D'))
image.png

相关文章

网友评论

      本文标题:js ES6 includes查找字符

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