blob: 16d8698744ef191c82a23db952cf05ab3cbe172a [file] [log] [blame]
'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');