top of page

package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"

require("reaper_AZSTOKE_SILVER")


function Msg(param)

   reaper.ShowConsoleMsg(tostring(param).."\n")

end


textStr = "AZSTOKE Geme Audio"

replaceText  = reaper.AZ_ReplaceSearchString(textStr,"AZSTOKE","RIGDOCKS")

Msg(replaceText)

- SIMPLE SCRIPT -

checkType = reaper.AZ_ReplaceSearchString(textStr,checkStr)

- API -

ID

STRING

reaper.AZ_ReplaceSearchString

対応バージョン:

1.0.0

以降

文字列の置換

- API Detail -

▼入力値 

textStr(string):テキスト

searchString(string) : 検索テキスト

replaceString(string) : 置換テキスト


▼出力値 

string(string):API実行後のテキスト

bottom of page