Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[COLOR=green]'[URL unfurl="true"]http://msdn.microsoft.com/en-us/library/ms974570.aspx[/URL]
'[URL unfurl="true"]http://msdn.microsoft.com/en-us/library/yab2dx62.aspx[/URL]
'[URL unfurl="true"]http://www.regular-expressions.info/index.html[/URL][/color]
set re = new regexp
dim strInput
dim Matches
dim Match
strInput = "123.456"
re.Pattern = "(^\d*\.\d{2})"
re.IgnoreCase = true
wscript.echo(strInput)
if re.Test(strInput) then
wscript.echo(re.Execute(strInput)(0).SubMatches(0))
end if