This topic has not yet been rated - Rate this topic

lastMatch Property ($&) (JavaScript)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Returns the last matched characters from any regular expression search. Read-only.

RegExp.lastMatch

The object associated with this property is always the global RegExp object.

The initial value of the lastMatch property is an empty string. The value of the lastMatch property changes whenever a successful match is made.

The following example illustrates the use of the lastMatch property:

   // Create the regular expression pattern.
   var re = new RegExp("d(b+)(d)","ig");
   var str = "cdbBdbsbdbdz";

   // Perform the search.
   var arr = re.exec(str);

   // Print the output.
   var s = "" 
   s += "$1: " + RegExp.$1 + "<br />";
   s += "$2: " + RegExp.$2 + "<br />";
   s += "$3: " + RegExp.$3 + "<br />";
   s += "input: " + RegExp.input + "<br />";
   s += "lastMatch: " + RegExp.lastMatch + "<br />";
   s += "leftContext: " + RegExp.leftContext + "<br />";
   s += "rightContext: " + RegExp.rightContext + "<br />"; 
   s += "lastParen: " + RegExp.lastParen + "<br />";

   document.write(s);

Supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards, Internet Explorer 10 standards. Also supported in Metro style apps. See Version Information.

Applies To: RegExp Object (JavaScript)

Did you find this helpful?
(1500 characters remaining)