Returns the character position where the first successful match begins in a searched string. Read-only.
  Remarks
Example
    
      
        The following example illustrates the use of the index property. This function iterates a search string and prints out the index and lastIndex values for each word in the string.
      
    
    |   |  Copy Code | 
|---|
function RegExpTest(){
  var ver = Number(ScriptEngineMajorVersion() + "." + ScriptEngineMinorVersion())
  if (ver >= 5.5){
    var src = "The rain in Spain falls mainly in the plain.";
    var re = /\w+/g;
    var arr;
    while ((arr = re.exec(src)) != null)
       print(arr.index + "-" + arr.lastIndex + "\t" + arr);
  }
  else{
    alert("You need a newer version of JScript for this to work");
  }
} | 
 
   
Requirements
See Also