Open XML SDK を使用して Excel ファイル (xlsx) を開き、外部から渡された特定の文字列または整数を検索して、スプレッドシート内の値の重複をチェックしたいと考えています。
スプレッドシートのすべてのセルで入力文字列を検索するにはどうすればよいですか?
Open XML SDK を使用して Excel ファイル (xlsx) を開き、外部から渡された特定の文字列または整数を検索して、スプレッドシート内の値の重複をチェックしたいと考えています。
スプレッドシートのすべてのセルで入力文字列を検索するにはどうすればよいですか?
ここ:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Spreadsheet;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
using (SpreadsheetDocument document = SpreadsheetDocument.Open(@"C:\Users\user\Desktop\Book1.xlsx", true))
{
Sheet sheet = document.WorkbookPart.Workbook.Descendants<Sheet>().First<Sheet>();
Worksheet worksheet = ((WorksheetPart)document.WorkbookPart.GetPartById(sheet.Id)).Worksheet;
IEnumerable<Row> allRows = worksheet.GetFirstChild<SheetData>().Descendants<Row>();
foreach (Row currentRow in allRows)
{
IEnumerable<Cell> allCells = currentRow.Descendants<Cell>();
foreach (Cell currentCell in allCells)
{
CellValue currentCellValue = currentCell.GetFirstChild<CellValue>();
string data = null;
if (currentCell.DataType != null)
{
if (currentCell.DataType == CellValues.SharedString) // cell has a cell value that is a string, thus, stored else where
{
data = document.WorkbookPart.GetPartsOfType<SharedStringTablePart>().FirstOrDefault().SharedStringTable.ElementAt(int.Parse(currentCellValue.Text)).InnerText;
}
}
else
{
data = currentCellValue.Text;
}
Console.WriteLine(data);
/*
your code here
if(data.contains("myText"))
doSomething();
*/
}
}
}
}
}
}