Search XLSB Formats in C++
Native and high performance XLSB document search using server-side Aspose.Cells for C++ APIs, without the use of any software like Microsoft or Adobe PDF.
How to Search XLSB File Using C++
In order to search XLSB file, we’ll use
API which is a feature-rich, powerful and easy to use document searching API for C++ platform. You can download its latest version directly, just open
package manager, search for Aspose.Cells.Cpp and install. You may also use the following command from the Package Manager Console.
Command
PM> Install-Package Aspose.Cells.Cpp
Steps to Search XLSB Files in C++
A basic document search using Aspose.Cells APIs can be done with just few lines of code.
- Load XLSB file using Workbook class.
- Get the cells in relevant sheet.
- Search Numbers, Date and Text using Find method
System Requirements
Aspose.Cells for C++ supports on all major platforms and Operating Systems. Please make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with C++ Runtime Environment for Windows 32 bit, Windows 64 bit and Linux 64 bit.
- Add reference to the Aspose.Cells for C++ DLL in your project.
Search XLSB Files - C++
Aspose::Cells::Startup();
// searching cells containing specified string value or number
Workbook workbook("book1.xlsb");
// get cells collection
Cells cells = workbook.GetWorksheets().Get(0).GetCells();
FindOptions opts;
opts.SetLookInType(LookInType::Values);
opts.SetLookAtType(LookAtType::EntireContent);
// find the cell with the input integer or double
Cell cell1 = cells.Find(205, nullptr, opts);
if (!cell1.IsNull()) {
std::cout << "Name of the cell containing the value: " << cell1.GetName().ToUtf8() << std::endl;
}
else {
std::cout << "Record not found " << std::endl;
}
// find the cell with the input string
Cell cell2 = cells.Find(u"Items A", nullptr, opts);
if (!cell2.IsNull()) {
std::cout << "Name of the cell containing the value: " + cell2.GetName().ToUtf8() << std::endl;
}
else {
std::cout << "Record not found " << std::endl;
}
// find the cell containing with the input string
opts.SetLookAtType(LookAtType::Contains);
Cell cell3 = cells.Find(u"Data", nullptr, opts);
if (!cell3.IsNull()) {
std::cout << "Name of the cell containing the value: " + cell3.GetName().ToUtf8() << std::endl;
}
else {
std::cout << "Record not found " << std::endl;
}
Aspose::Cells::Cleanup();
About Aspose.Cells for C++ API
Aspose.Cells API can be used to create, edit, convert and render Microsoft Excel formats to different formats. Moreover, it can be used for comprehensive charting, scalable reporting and reliable calculations within software applications. Aspose.Cells is a standalone API and it does not require any software like Microsoft or OpenOffice.Online XLSB Search Live Demos
XLSB What is XLSB File Format?
XLSB file format specifies the Excel Binary File Format, which is a collection of records and structures that specify Excel workbook content. The content can include unstructured or semi-structured tables of numbers, text, or both numbers and text, formulas, external data connections, charts and images. Unlike XLSX (which is based on Open XML file format), the XLSB represents binary Excel workbook file. XLSB files can be read and written to faster which makes them useful for working with large files. XLSB is seldom used to store workbooks as XLSX (and previously XLS) are the most common user selected file formats for saving workbooks. It can be opened by Microsoft Office 2007 and above.
Read More