[問題] Excel range find已刪文

看板C_Sharp (C#)作者 (別理我)時間5年前 (2019/01/14 17:13), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/1
請問使用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
文章代碼(AID): #1SF5BBCJ (C_Sharp)
文章代碼(AID): #1SF5BBCJ (C_Sharp)