top of page
- API -

cellSearchResult = reaper.AZ_Excel_SearchCellsInWorksheet(excelDocument, searchStr, range, isRegex)

- API Detail-

▼入力値

excelDocument(ExcelDocument) : エクセルドキュメント

searchStr(string) : 検索文字列

range(string) : 検索範囲

・行,列 単一指定

・行1:行2,列1:列2 複数指定(任意 デフォルト : 全範囲)

行1:行2,列1:列2 複数指定(任意 デフォルト : 全範囲)"

isRegex(boolean) : 正規表現検索(任意 デフォルト : FALSE)



▼出力値

"cellSearchResult(ExcelSheetInfoArray) : ワークシート配列

 -Name : ワークシート名

-Worksheet : ワークシート

-Cells: セル(マップ)

- key : 行番号

 - value : 列(マップ)

   - key : 列番号

   - value : セルの値

- 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")


sheetList = reaper.AZ_Excel_SearchCellsInAllWorksheets(doc, "01")


Msg("result : " .. tostring(reaper.AZ_GetErrorCode()))


showObject(sheetList)


reaper.AZ_Excel_CloseFile(doc)

Excel

AZ_Excel_SearchCellsInAllWorksheets

Supported versions:

1.0.3

onwards

全シート内行検索

bottom of page