Read/Write text file

后端 未结 5 1750
眼角桃花
眼角桃花 2020-12-20 06:46

I am trying to change a some lines in a text file without affecting the other lines. This is what\'s inside the text file called \"text.txt\"

this is  a test         


        
5条回答
  •  無奈伤痛
    2020-12-20 07:07

    No. Files are byte-oriented, not line-oriented, and changing the length of a line will not advance the following bytes.

提交回复
热议问题