RegExp.lastMatch - рядок який співпав під шаблон.
RegExp.lastMatch;
RegExp['$&'];
lastMatch властивість об'єкту RegExp яка містить рядок який співпав по шаблону.
Властивість RegExp.lastMatch має псевдонім RegExp['$&'].
var reg = /\w+\@\w+/g;
reg.exec('for js@code');
console.log( RegExp.lastMatch ); //js@code
reg.test('Script');
console.log( RegExp.lastMatch ); //js@code
reg.test('3 Довідка javascript code'); //js@code
console.log(RegExp.lastMatch);
reg.test('Java java@code free');
console.log(RegExp.lastMatch); //java@code