top of page
- API -

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

- API Detail -

▼入力値

excelWorksheet(ExcelWorksheet) : ワークシート

searchStr(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_SearchCellsInWorksheet(worksheet, "1")

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

showObject(sheetList)

reaper.AZ_Excel_CloseFile(doc)

Excel

AZ_Excel_SearchCellsInWorksheet

対応バージョン:

1.0.3

以降

シート内セル検索

bottom of page