My bad :( i missed that 1...
Below is the script i am using:
============================
Dim arrFields
src = "d:\src.txt"
tgt = "d:\tgt.txt"
Set objFileToRead = CreateObject("Scripting.FileSystemObject").OpenTextFile(src,1)
Set objFileToWrite = CreateObject("Scripting.FileSystemObject").OpenTextFile(tgt,2)
Dim strLine
do while not objFileToRead.AtEndOfStream
strLine = objFileToRead.ReadLine()
arrFields = Split(strLine, vbTab)
Wscript.Echo arrFields(2)
objFileToWrite.WriteLine(strline)
loop
objFileToRead.Close
Set objFileToRead = Nothing
===========================
Here i want to modify the 3rd column arrFields(2), so the code
Wscript.Echo arrFields(2)
needs to be replaced with the code which can change the value of the column.
Could you please help?