let text = "The rain in SPAIN stays mainly in the plain";
text.match(/ain/gi) // 返回数组 [ain,AIN,ain,ain]
亲自试一试
String.includes()
如果字符串包含指定值,includes() 方法返回 true。
实例
let text = "Hello world, welcome to the universe.";
text.includes("world") // 返回 true
亲自试一试
浏览器支持
Internet Explorer 不支持 String.includes()。