delphi 在特定点将文本插入文本文件
我想编辑一个文本文件。如果我读到一个特殊的行(让我们说//--开始在这里编辑文本--//),那么在该行之后我想插入几行,但我不想覆盖现有的行。 delphi 可以做到这一点吗?谢谢!
示例文本:
这个
是一个文件
里面有文字
//--开始在此处插入文本--//
中间没有任何东西
编辑后的示例文本:
这个
是一个文件
里面有文字
//--开始在此处插入文本--//
现在有东西
之间
中间没有任何东西
i want to edit a textfile. if i read a special line (let us say //--begin editing text here--//) then after this line i want to insert several lines but i don't want to override existing lines. is this possible with delphi? thanks!
sample text:
this
is a file
with text in it
//--begin inserting text here--//
and nothing in between
sample text after edit:
this
is a file
with text in it
//--begin inserting text here--//
now there is something
in between
and nothing in between
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有多种方法可以做到这一点。
最简单的版本:
您还可以使用其他文件 IO 命令,例如:
读取文本文件:
写出你想要的内容。
需要注意的是,实际上上述两种方法实际上只是重写文件的全部内容。
TFileStream
类允许您操作文件的实际字节。一般来说,您需要阅读直到找到所需的文本。然后,在写出文件的新结尾时,预读并缓存文件的其余部分。There are several ways you can do this.
The simplest version:
You can also use other File IO Commands such as:
To Read a text file:
The to write out what you want..
It should be noted that in reality both of the above methods are actually just rewriting the entire contents of the file.
The
TFileStream
class allows you manipulate the actual bytes of a file. In general you would need to read until you found the expected text. Then read ahead and cache the rest of the file, as you write out the new ending of the file.