PNG JPG BMP TIFF XLS
Aspose.Cells  for .NET

搜索 XLS C# 中的格式

使用服务器端 Aspose.Cells for .NET API 进行本机高性能 XLS 文档搜索,无需使用 Microsoft 或 Adobe PDF 等任何软件。

如何使用 C# 搜索 XLS 文件

为了搜索 XLS 文件,我们将使用

Aspose.Cells for .NET

API这是一个功能丰富、功能强大且易于使用的文档搜索API for C#平台。打开

NuGet

包管理器,搜索 Aspose.Cells 并安装。您还可以从包管理器控制台使用以下命令。

命令


PM> Install-Package Aspose.Cells

搜索 C# 中的 XLS 文件的步骤

基本文档搜索

Aspose.Cells for .NET

只需几行代码即可完成 API。

使用 Workbook 类加载 XLS 文件。 获取相关工作表中的单元格。

  • 使用查找方法搜索 Numbers、日期和文本

系统要求

我们的 API 在所有主要平台和操作系统上均受支持。在执行下面的代码之前,请确保您的系统满足以下先决条件。

  • Microsoft Windows 或具有 .NET Framework、.NET Core、Mono 或 Xamarin 平台的兼容操作系统
  • 开发环境如Microsoft Visual Studio
  • 在项目中添加对 Aspose.Cells for .NET DLL 的引用 - 使用上面的下载按钮从 NuGet 安装
 

搜索 XLS 文件 - C#

// searching cells containing specified string value or number
Workbook workbook = new Workbook("book1.xls");

// get cells collection
Cells cells = workbook.Worksheets[0].Cells;

FindOptions opts = new FindOptions();
opts.LookInType = LookInType.Values;
opts.LookAtType = LookAtType.EntireContent;

// find the cell with the input integer or double
Cell cell1 = cells.Find(205, null, opts);

if (cell1 != null){
    Console.WriteLine("Name of the cell containing the value: " + cell1.Name);
}else{
    Console.WriteLine("Record not found ");
}

// find the cell with the input string
Aspose.Cells.Cell cell2 = cells.Find("Items A", null, opts);

if (cell2 != null){
    Console.WriteLine("Name of the cell containing the value: " + cell2.Name);
}else{
    Console.WriteLine("Record not found ");
}

// find the cell containing with the input string
opts.LookAtType = LookAtType.Contains;
Cell cell3 = cells.Find("Data", null, opts);

if (cell3 != null){
    Console.WriteLine("Name of the cell containing the value: " + cell3.Name);
}else{
    Console.WriteLine("Record not found ");
}  
 
  • 关于 Aspose.Cells for .NET API

    Aspose.Cells API 可用于创建、编辑、转换和渲染 Microsoft Excel 格式为不同的格式。此外,它还可用于软件应用程序中的全面图表、可扩展报告和可靠计算。 Aspose.Cells 是一个独立的 API,它不需要任何像 Microsoft 或 OpenOffice 这样的软件。

    在线 XLS 搜索现场演示

    立即访问我们的 XLS 文档中搜索文本、单词、短语 现场演示网站 。现场演示有以下好处

      无需下载Aspose API。
      无需编写任何代码。
      只需上传您的 XLS 文件即可。
      搜索结果立即出现。

    XLS 什么是XLS 文件格式

    扩展名为 XLS 的文件代表 Excel 二进制文件格式。此类文件可以由 Microsoft Excel 以及其他类似的电子表格程序(例如 OpenOffice Calc 或 Apple Numbers)创建。Excel 保存的文件称为工作簿,其中每个工作簿可以有一个或多个工作表。数据以工作表中的表格格式存储并显示给用户,可以涵盖数值、文本数据、公式、外部数据连接、图像和图表。 Microsoft Excel 等应用程序可让您将工作簿数据导出为多种不同的格式,包括 PDF、CSV、XLSX、TXT、HTML、XPS 等。随着 Microsoft Excel 2007 的发布,XLS 文件格式被更开放和结构化的格式 XLSX 所取代。最新版本仍然支持创建和读取 XLS 文件,尽管 XLSX 是现在使用的首选。

    阅读更多

    其他支持的搜索格式

    使用C#,还可以搜索其他格式,包括。

    CSV (逗号分隔值)
    ODS (OpenDocument 电子表格文件)
    TSV (制表符分隔值)
    TXT (文本文档)
    XLSB (二进制 Excel 工作簿文件)
    XLSM (电子表格文件)