PNG
JPG
BMP
TIFF
XLSX
编辑 XLSX 格式 C++
使用服务器端 Aspose.Cells for C++ API 的本机和高性能 XLSX 文档敏感编辑信息,无需使用任何软件(如 Microsoft 或 Adobe PDF)。
如何使用 C++ 编辑 XLSX 文件
为了编辑 XLSX 文件,我们将使用 Aspose.Cells for C++ API 是一个功能丰富、功能强大且易于使用的文档编辑 API for C++ 平台。您可以直接下载其最新版本,只需打开 NuGet 包管理器,搜索Aspose.Cells.Cpp并安装。您也可以从程序包管理器控制台使用以下命令。
命令
PM> Install-Package Aspose.Cells.Cpp
在 C++ 中删除 XLSX 文件的步骤
基本文档搜索并替换内容、注释或元数据中的文本 Aspose.Cells for C++ 只需几行代码即可完成 API。
- 加载 XLSX 文件。
- 定义替换选项。 设置区分大小写选项。
- 设置文本匹配选项 使用 Replace(…) 方法替换文本 保存工作簿。
系统要求
Aspose.Cells for C++ 支持所有主要平台和操作系统。请确保您满足以下先决条件。
- Microsoft Windows 或与 C++ 运行环境兼容的操作系统,适用于 Windows 32 位、Windows 64 位和 Linux 64 位。
- 在您的项目中添加对 Aspose.Cells for C++ DLL 的引用。
编辑 XLSX 文件 - C++
Aspose::Cells::Startup();
// Load XLSX file
Workbook wb(u"Input.xlsx");
//Create an instance of the ReplaceOptions class
ReplaceOptions replaceOptions;
// Set text matching option
replaceOptions.SetRegexKey(true);
// Set case sensitivity option
replaceOptions.SetCaseSensitive(false);
// Set text matching option
replaceOptions.SetMatchEntireCellContents(false);
// Replace text
wb.Replace(u"\bKIM\b", u"^^^^^^^^", replaceOptions);
// Save as XLSX file
wb.Save("output.xlsx");
Aspose::Cells::Cleanup();