Schemerige objFile strTxtFile strAllLines, strMatch, objFSO, strNewText
Const ForReading = 1
Const ForWriting = 2
Reeks objNetwork = CreateObject („Wscript.Network“)
strUser = objNetwork.UserName
strTxtFile = „C:\Documents and Settings\“ & strUser &“ Rest \ van de Weg "
strMatch = „TE WIJZIGEN TEKST ZICH“
strNewText = „TEKST OM ORIGINEEL TE VERVANGEN“
'Leest het Txt- dossier
Reeks objFSO = CreateObject („Scripting.FileSystemObject“)
Vastgestelde objFile = strTxtFile objFSO.OpenTextFile (, ForReading)
strAllLines = objFile.ReadAll
objFile.Close
strNewText = vervang (strAllLines, strMatch, strNewText)
Plaats objFile = strTxtFile objFSO.OpenTextFile (, ForWriting)
objFile.WriteLine (strNewText)
objFile.Close
|