セル内の値の検索
Contents
[
Hide
]
Aspose.Cells - セル内の値の検索
Microsoft Excelでは、特定のデータを含むセルを検索できます。たとえば、編集をクリックし、検索を選択すると、検索ダイアログが開きます。ユーザーは値を入力し、OKをクリックして検索を実行できます。Excelは一致するフィールドを強調表示します。
C#
//Instantiating a Workbook object
Workbook workbook = new Workbook("../../data/test.xlsx");
//Accessing the first worksheet in the Excel file
Worksheet worksheet = workbook.Worksheets[0];
//Finding the cell containing the specified formula
Cells cells = worksheet.Cells;
//Instantiate FindOptions
FindOptions findOptions = new FindOptions();
//Finding the cell containing a string value that starts with "Or"
findOptions.LookAtType = LookAtType.StartWith;
Cell cell = cells.Find("SH", null, findOptions);
//Printing the name of the cell found after searching worksheet
Console.WriteLine("Name of the cell containing String: " + cell.Name);
ランニングコードのダウンロード
以下に挙げるいずれかのソーシャルコーディングサイトからセル内の値の検索をダウンロードしてください。
詳細については、データの検索をご覧ください。