file input/output
Visual Basic
3
Posts
3
Posters
0
Views
1
Watching
-
Load the file into a String variable, call Replace on it with the text you want to find and what to replace it with, then write the string back out to the file.
Dave Kreskowiak Microsoft MVP - Visual Basic
-
U can do with many methods. 1st... U can read file with filestream and read as byte or readline and search string with "InStr" function. or looping. 2nd the best idea is "regular expression".