Node.jsを使用してC++経由で範囲内のデータを検索・置換
Contents
[
Hide
]
場合によっては、範囲の外にあるセルの値を無視して特定のデータを検索・置換する必要があります。Aspose.Cells for Node.js via C++は、検索を特定の範囲に限定することを可能にします。この記事ではその方法を解説します。
Aspose.Cells for Node.js via C++は、検索時に範囲を指定するための FindOptions.setRange(CellArea) メソッドを提供します。以下のコード例は、範囲内のデータを検索して置換します。
const path = require("path");
const AsposeCells = require("aspose.cells.node");
const dataDir = path.join(__dirname, "data");
const filePath = path.join(dataDir, "input.xlsx");
const workbook = new AsposeCells.Workbook(filePath);
const worksheet = workbook.getWorksheets().get(0);
const area = AsposeCells.CellArea.createCellArea("E9", "H15");
const opts = new AsposeCells.FindOptions();
opts.setLookInType(AsposeCells.LookInType.Values);
opts.setLookAtType(AsposeCells.LookAtType.EntireContent);
opts.setRange(area);
let cell = null;
do {
cell = worksheet.getCells().find("search", cell, opts);
if (cell === null || cell.isNull()) {
break;
}
cell.putValue("replace");
} while (true);
workbook.save(path.join(dataDir, "output.out.xlsx"));