Schwache strAllLines, strTxtFile, strMatch, objFSO, objFile, strNewText
Const ForReading = 1
Const ForWriting = 2
objNetwork = CreateObject („Wscript.Network“) einstellen
strUser = objNetwork.UserName
strTxtFile = „C:\Documents and Settings\“ u. strUser u.“ \ Rest des Weges "
strMatch = „GEÄNDERT ZU WERDEN TEXT“
strNewText = „TEXT, ZUM VON VORLAGE ZU ERSETZEN“
'Liest die TXT Akte
objFSO = CreateObject („Scripting.FileSystemObject“) einstellen
objFile einstellen = objFSO.OpenTextFile (strTxtFile, ForReading)
strAllLines = objFile.ReadAll
objFile.Close
strNewText = ersetzen (strAllLines, strMatch, strNewText)
Gesetztes objFile = objFSO.OpenTextFile (strTxtFile, ForWriting)
objFile.WriteLine (strNewText)
objFile.Close
|