请问使用C#从 excel 里捞资料时
使用 find 时会遇到寻找头几字字串相同时
就把 range 找出来
例如我要寻找 "apples"
如果表格中还存在 "apples_temp", 因为前几个字相同
也会去寻找 "apples_temp"
是否有类似精准比对的选项?
谢谢!
using Excel = Microsoft.Office.Interop.Excel;
using System.Windows.Forms;
Excel.Application app = new Excel.Application();
Excel.Range Fruits = app.get_Range("A1", "H10");
currentFind = Fruits.Find("apples", Missing.Value,
Excel.XlFindLookIn.xlValues, Excel.XlLookAt.xlPart,
Excel.XlSearchOrder.xlByRows, Excel.XlSearchDirection.xlNext,
false,Missing.Value, Missing.Value);