- API -
cellSearchResult = reaper.AZ_Excel_SearchRowsInWorksheet(excelWorksheet, searchStr, targetCulume, range, isRegex)
- API Detail -
▼入力値
excelWorksheet(ExcelWorksheet) : ワークシート
searchStr(string) : 検索文字列
targetCulume(string) : 対象列
range(string) : 検索範囲
・行,列 単一指定
・行1:行2,列1:列2 複数指定(任意 デフォルト : 全範囲)
isRegex(boolean) : 正規表現検索(任意 デフォルト : FALSE)
▼出力値
cellSearchResult(ExcelSheetInfo) : ワークシート
-Name : ワークシート名
-Worksheet : ワークシート
-Cells: セル(マップ)
- key : 行番号
- value : 列(マップ)
- key : 列番号
- value : セルの値
- SIMPLE SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
function showObject(object, depth)
local obj = object
if depth == nil then depth = 0 end
if(type(obj) == "table") then
Msg("")
for k, v in pairs(obj) do
for i = 1, depth, 1 do reaper.ShowConsoleMsg(" ") end
reaper.ShowConsoleMsg(tostring(k) .. " : ")
showObject(v, depth + 4)
end
else
Msg(obj)
end
end
doc = reaper.AZ_Excel_OpenFile("D:\\rigdocks\\01_APIDock\\test.xlsx")
worksheet = reaper.AZ_Excel_OpenWorksheet(doc, "b")
sheetList = reaper.AZ_Excel_SearchRowsInWorksheet(worksheet, "e", "J")
Msg("result : " .. tostring(reaper.AZ_GetErrorCode()))
showObject(sheetList)
reaper.AZ_Excel_CloseFile(doc)