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();