PNG
JPG
BMP
TIFF
TXT
搜索 TXT C++ 中的格式
使用服务器端 Aspose.Cells for C++ API 进行本机高性能 TXT 文档搜索,无需使用 Microsoft 或 Adobe PDF 等任何软件。
如何使用 C++ 搜索 TXT 文件
为了搜索 TXT 文件,我们将使用
API这是一个功能丰富、功能强大且易于使用的文档搜索API for C++平台。您可以直接下载最新版本,打开即可
包管理器,搜索 Aspose.Cells.Cpp 并安装。您还可以从包管理器控制台使用以下命令。
命令
PM> Install-Package Aspose.Cells.Cpp
搜索 C++ 中的 TXT 文件的步骤
只需几行代码即可使用 Aspose.Cells API 完成基本文档搜索。
- 通过实例化 Workbook 类来加载 TXT 文件。
- 实例化 ReplaceOptions 类。
- 设置所需的模式,如 SetCaseSensitive(bool value)、SetMatchEntireCellContents(bool value) 。 使用带有相关选项的 Workbook::Replace(…) 方法。
- 使用 Workbook::Save(…) 方法保存 TXT 文件。
系统要求
Aspose.Cells for C++ 支持所有主要平台和操作系统。请确保您具备以下先决条件。
- Microsoft Windows 或具有 C++ 运行时环境的兼容操作系统,适用于 Windows 32 位、Windows 64 位和 Linux 64 位。
- 在项目中添加对 Aspose.Cells for C++ DLL 的引用。
搜索 TXT 文件 - C++
Aspose::Cells::Startup();
// Source directory path.
U16String srcDir(u"SourcePath\\");
// Output directory path.
U16String outDir(u"OutputPath\\");
// Load TXT file
Workbook wkb(srcDir + u"sourceFile.txt");
// Create an instance of the IReplaceOptions class
ReplaceOptions replaceOptions;
// Set case sensitivity option
replaceOptions.SetCaseSensitive(false);
// Set text matching option
replaceOptions.SetMatchEntireCellContents(false);
// Replace text
wkb.Replace(u"Text to find", u"Text replacement", replaceOptions);
// Save as TXT file
wkb.Save(outDir + u"outputFile.txt");
Aspose::Cells::Cleanup();