I want to delete a specific line from a text file. I found that line, but what to do next? Any idea?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Read file from stream and write it to another stream and skip the line which you want to delete |
|||
|
|
|
There is no magic to removing lines.
|
|||||
|
|
Deleting a text line directly in a file is not possible. We have to read the file into memory, remove the text line and rewrite the edited content. |
|||||||
|
