This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

file line access

Old posts that have not been replied to for several years.
Locked
N
Nada_Surf

Post by Nada_Surf »

after opening a file how does one manipulate a single line in the file?
N
Nada_Surf

Post by Nada_Surf »

say i want to change line 1 or line 5 .. etc
User avatar
stdragon
Owner
Posts: 959
Joined: Sun Sep 23, 2001 8:00 pm
Contact:

Post by stdragon »

Read in the whole life, change the line in memory, write out the whole file. You can't really change one single line unless the new line is the exact same length, or you use a special file format like a database that has fields and padding and stuff.
Locked