blob: 855e84eb35cfe46c9efc25c36ea99c3e3f994c0c [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
writeLine(/.*(aaa.*aaa)/.exec("aaaaaa"));
writeLine(/.*a(.*aaa.*)a.*/.exec("aaaaa"));
writeLine(/.*(\.facebook\..*)/.exec("www.facebook.com"));
writeLine(/.*(aamber aamber aamber)/.exec("aamber aamber aamber."));
writeLine(/.*(this (is this is) this)/.exec("this is this is this"));
writeLine(/.*(this is top tier toy)/.exec("this is top tier toy"));
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Helpers
function writeLine(str)
{
WScript.Echo("" + str);
}