Source code

Revision control

Copy as Markdown

Other Tools

'abcdef'.replace(/a(\w+)c/, function() {
assertEq(RegExp.lastMatch, 'abc');
'123456'.replace(/1(\d+)3/, function() {
assertEq(RegExp.lastMatch, '123');
});
assertEq(RegExp.lastMatch, '123');
});
assertEq(RegExp.lastMatch, '123');