search 方法
更新:2007 年 11 月
傳回規則運算式搜尋中第一個符合子字串的位置。
function search(rgExp : RegExp) : Number
引數
- rgExp
必要項。包含有規則運算式模式和適用旗標的規則運算式物件的執行個體。
備註
search 方法會指出是否找到符合的項目。如果找到符合的項目,search 方法會傳回一整數值,說明從符合字串開始的位移 (Offset)。如果找不到符合項目,則會傳回 -1。
範例
以下範例說明如何使用 search 方法。
function SearchDemo(){
var r, re; //Declare variables.
var s = "The rain in Spain falls mainly in the plain.";
re = /falls/i; //Create regular expression pattern.
r = s.search(re); //Search the string.
return(r); //Return the index to the first match
//or –1 if no match is found.
}