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.
Dim MyString
With CreateObject("VBScript.RegExp")
.MultiLine = True
.Global = True
.IgnoreCase = True
.Pattern = "(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})"
MyString = .Replace(CreateObject("Scripting.FileSystemObject").OpenTextFile("MyFile", 1, False).ReadAll, "We should block $1 Please do this now.")
End With
CreateObject("Scripting.FileSystemObject").OpenTextFile("MyFile2", 2, True).Write MyString
wscript.echo "Done!"