top of page
- API -
checkType = reaper.AZ_CheckIncludeString(textStr,checkStr)
- 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
- SCRIPT -
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
textStr = "AZSTOKE"
checkStr = "A-Z"
checkType = reaper.AZ_CheckIncludeString(textStr,checkStr)
Msg(checkType)
checkStr = "az"
checkType = reaper.AZ_CheckIncludeString(textStr,checkStr)
Msg(checkType)
STRING
AZ_CheckIncludeString
Supported versions:
1.0.3
onwards
Check whether the specified string is included
bottom of page