[問題] Excel range find已刪文
請問使用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);
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 180.217.134.20
※ 文章網址: https://www.ptt.cc/bbs/C_Sharp/M.1547457227.A.313.html
C_Sharp 近期熱門文章
PTT數位生活區 即時熱門文章