top of page
- API -
checkType = reaper.AZ_CheckIncludePerfectString(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_CheckIncludePerfectString(textStr,checkStr)
Msg(checkType)
checkStr = "az"
checkType = reaper.AZ_CheckIncludePerfectString(textStr,checkStr)
Msg(checkType)
STRING
AZ_CheckIncludePerfectString
Supported versions:
1.0.3
onwards
Check if the specified string is included and the case is the same
bottom of page