top of page

import sys

sys.path.append(RPR_GetResourcePath() + r"/UserPlugins")

from AZSTOKE_SILVER_python import *


def Msg(parm):

    RPR_ShowConsoleMsg(str(parm) + "\n")


textStr = "AZSTOKE"

checkStr = "AZ"

check = AZ_CheckIncludeString(textStr,checkStr)

Msg(check)


textStr = "AZSTOKE"

checkStr = "az"

check = AZ_CheckIncludeString(textStr,checkStr)

Msg(check)


- SCRIPT -

check = AZ_CheckIncludeString(textStr,checkStr)

- API -

対応バージョン:

1.0.0

以降

STRING

AZ_CheckIncludeString

Check whether the specified string is included

- API Detail-

▼Input value

textStr(string): Text

checkStr(string): The text to check

checkType : Enter "0" for output

▼Output value

retval(boolean): Success or failure of API execution

textStr(string) : Same as input

checkStr(string) : Same as input

checkType : True/The text contains a check text False/The text does not contain a check text

bottom of page