strAllLines fiochi, strTxtFile, strMatch, objFSO, objFile, strNewText
Const ForReading = 1
Const ForWriting = 2
Regolare il objNetwork = CreateObject (“Wscript.Network„)
strUser = objNetwork.UserName
strTxtFile = “C:\Documents and Settings\„ & strUser &„ \ resto del percorso "
strMatch = “TESTO DA MODIFICARE„
strNewText = “TESTO PER SOSTITUIRE ORIGINALE„
'Legge la lima di TXT
Regolare il objFSO = CreateObject (“Scripting.FileSystemObject„)
Regolar objFile = objFSO.OpenTextFile (strTxtFile, ForReading)
strAllLines = objFile.ReadAll
objFile.Close
lo strNewText = sostituisce (strAllLines, strMatch, strNewText)
objFile stabilito = objFSO.OpenTextFile (strTxtFile, ForWriting)
objFile.WriteLine (strNewText)
objFile.Close
|