Quote:
> Where i can find some functions to editing text file ... such as deleting
> rows containing certain words or replacing strings ...
Write code to copy the file to another (temporary)
file, skipping over data you want 'deleted', close
both files, delete the original file, and rename
the temporary file with the name of the original.
Since you (or whoever gave you the specifications for
your program) are the one who defines and controls
the file's format, of course neither the language nor
its library could possibly provide 'ready made' functions
for such tasks.
-Mike