以下のように文字列を検出するには2つ以上の命令/関数が必要でしょうか?
"1"→"1"
"1 2 3"→"1"
"123"→""
"3 2 1"→"1"
"321"→""
"2 1 3"→"1"
"213"→""
下のような方法では検出できませんでした。
#include "mod_regexp.as"
a="1" b="123" c="1 2 3" d="321" e="3 2 1" f="213" g="2 1 3" mes "a="+match(a,"((?= )|^)1((?= )|$)",0,1) mes "b="+match(b,"((?= )|^)1((?= )|$)",0,1) mes "c="+match(c,"((?= )|^)1((?= )|$)",0,1) mes "d="+match(d,"((?= )|^)1((?= )|$)",0,1) mes "e="+match(e,"((?= )|^)1((?= )|$)",0,1) mes "f="+match(f,"((?= )|^)1((?= )|$)",0,1) mes "g="+match(g,"((?= )|^)1((?= )|$)",0,1)