Webmethods中的正则表达式修饰符

dev*_*rsh 3 regex pipeline webmethods eai modifiers

我试图在Webmethods映射步骤中使用正则表达式模式.问题是忽略使用正则表达式修饰符匹配字符串的情况.
例如:

输入是'TEST'或'test'或'Test'

Branch on 'input'
/test/i : MAP
Run Code Online (Sandbox Code Playgroud)

但正如我在不同的webmethods论坛上读到的那样,在Webmethods中使用访问修改器是一种限制.所以,我无法使用'/ i'.
有关如何做到这一点的任何想法或暗示?
提前致谢.

Wik*_*żew 6

您可以使用内联修饰符(?i):

/(?i)test/
Run Code Online (Sandbox Code Playgroud)