top of page

function Msg(param)

   reaper.ShowConsoleMsg(tostring(param).."\n")

end


textStr = "AZSTOKE"

checkStr = "AZ"

checkType = reaper.AZ_CheckIncludeString(textStr,checkStr)

Msg(checkType)


checkStr = "az"

checkType = reaper.AZ_CheckIncludeString(textStr,checkStr)

Msg(checkType)


- SIMPLE SCRIPT -

checkType = reaper.AZ_CheckIncludeString(textStr,checkStr)

- API -

ID

STRING

reaper.AZ_CheckIncludeString

対応バージョン:

1.0.0

以降

指定文字列が入っているか確認

- API Detail -

▼入力値 

textStr(string):テキスト

checkStr(string) : チェック用テキスト


▼出力値 

checkType(boolean):true/指定文字列があり、なおかつ文字サイズも一致 false/指定文字列が存在せず、なおかつ文字サイズも一致しない

bottom of page