第一次命中
excel range.find exact match site:microsoft.com
是:
范围.查找
你在那里找到
LookAt 类型:System.Object
Optional Object. Can be one of the following XlLookAt constants: xlWhole or xlPart.
并按照LookAt 链接,您会看到:
xlPart Match against any part of the search text.
xlWhole Match against the whole of the search text.
顺便说一句:objTarget 是谁?
更新:
您必须“移植”(此处有一些提示)您在对 VBScript 的评论中提到的 VBA 代码片段:
Option Explicit
' Define Excel Consts unknown to VBScript
Const xlPart = 2
Const xlWhole = 1
Dim oExcel : Set oExcel = CreateObject("Excel.Application")
Dim oWBook : Set oWBook = oExcel.Workbooks.Open("M:\lib\kurs0705\testdata\ut.xls")
Dim oRange : Set oRange = oWBook.Sheets("NewSheet").Range("A1:A11")
' translate named args to positional args
' expression.Find(What, After, LookIn, LookAt, SearchOrder, SearchDirection, MatchCase, MatchByte)
Dim oFnd1 : Set oFnd1 = oRange.Find("Title1", , , xlPart)
WScript.Echo TypeName(oFnd1), CStr(oFnd1)
Dim oFnd2 : Set oFnd2 = oRange.Find("Title1", , , xlWhole)
WScript.Echo TypeName(oFnd2), CStr(oFnd2)
oWBook.Close
oExcel.Quit
输出:
cscript excelfind.vbs
Range Title10
Range Title1