blob: cb67e5701907853e3c070b09b811271146e06c12 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function MyRepl(matched, offset, input)
{
input.substring(offset, matched.length) == matched;
return "Boo!";
}
var str = new String("asdfasdfGg");
WScript.Echo(str.replace("f", MyRepl));
WScript.Echo(str.replace(/a/, MyRepl));
WScript.Echo(str.replace(/d/g, MyRepl));
WScript.Echo(str.replace(/G*/gi, MyRepl));