ES6 - search() 方法



此方法用于在字符串对象中搜索正则表达式匹配项。

语法

string.search(regexp);

参数详情

  • regexp − 正则表达式对象。如果传递非 RegExp 对象 obj,则会使用 new RegExp(obj) 隐式将其转换为 RegExp。

返回值

如果搜索成功,则返回正则表达式在字符串中的索引。否则,返回 -1。

示例

var re = /apples/gi;
var str = "Apples are round, and apples are juicy."; 
if ( str.search(re) == -1 ) { 
   console.log("Does not contain Apples" ); 
} else { 
   console.log("Contains Apples" ); 
}   

输出

Contains Apples.    
广告