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)


- SCRIPT -

checkType = reaper.AZ_CheckIncludeString(textStr,checkStr)

- API -

ID

STRING

reaper.AZ_CheckIncludeString

対応バージョン:

1.0.0

以降

Check whether the specified string is included

- API Detail-

▼Input value

textStr(string): Text

checkStr(string): The text to check


▼Output value

retval(boolean): Success or failure of API execution

checkType(boolean): true/specified string exists and the character size matches false/specified string does not exist and the character size does not match

bottom of page