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)


- SIMPLE SCRIPT -

check = AZ_CheckIncludeString(textStr,checkStr)

- API -

対応バージョン:

1.0.0

以降

STRING

AZ_CheckIncludeString

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

- API Detail -

▼入力値 

textStr(String):テキスト

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


▼出力値 

check : True/テキストにチェック用テキストが入っている False/テキストにチェック用テキストが入っていない

bottom of page