使用Delphi语言搜索和替换内部文件

时间:2009-12-19 04:43:31

标签: delphi search replace

我想用Delphi创建一个小应用程序在文件中搜索特定单词并更改它然后保存文件

它应该支持ansi和utf-8,我应该怎么做?

感谢

1 个答案:

答案 0 :(得分:1)

如果这是Delphi 2007或更早版本,您应该使用我的GpTextFile单元(也适用于Delphi 2009和2010)。

在D2009 +中,您可以使用TEncoding转换器来实现相似效果。有关更多信息,请参阅这些StackOverflow主题:

Open an ANSI file and Save a a Unicode file using Delphi

How can a text file be converted from ANSI to UTF-8 with Delphi 7?