top of page
- API -

checkType = reaper.AZ_CheckIncludeString(textStr,checkStr)

- API Detail -

▼入力値 

textStr(string):テキスト

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


▼出力値 

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

- SIMPLE SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())


textStr = "AZSTOKE"

checkStr = "AZ"

checkType = reaper.AZ_CheckIncludeString(textStr,checkStr)

Msg(checkType)


checkStr = "az"

checkType = reaper.AZ_CheckIncludeString(textStr,checkStr)

Msg(checkType)


STRING

AZ_CheckIncludeString

対応バージョン:

1.0.3

以降

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

bottom of page