C-012 ismember
原文:return the word number if s is a member of the given string list,
otherwise it returns zero (false)
中文:回報指定的字串在一個字串表中的位置。如果找不到,就回報0。
在字串表中,每個項目要用"|"隔開。
格式:%ismember(s,list)
範例:#SHOW %ismember("abc","def|ghi jk|abc")
顯示"abc"在字串表"def|ghi jk|abc"中的位置。
#VAR friendsList {Zugg|Darker|Penny}
#VAR petitioner zyxcef
#IF (%ismember(@petitioner,@friendsList)) {cast heal @petitioner}
{say Nope.}
設定一個字串表到變數friendsList。再設定一個變數petitioner,
內容為zyxcef,在friendsList中尋找zyxcef,結果是0,所以執
行指令:say nope.。