Const ForReading = 1
Const ForWriting = 2
objFSO = CreateObject („Scripting.FileSystemObject“) einstellen
objFile einstellen = objFSO.OpenTextFile („C:\Scripts\123.txt“, ForReading)
strText = objFile.ReadAll
objFile.Close
strNewText = ersetzen (strText, „043487835“, „04-3487835“)
strNewText = ersetzen (strText, „5551234“, „5551235“)
Gesetztes objFile = objFSO.OpenTextFile („C:\Scripts\123.txt“, ForWriting)
objFile.WriteLine strNewText
das objFile.Close |