Yahoo Pipes正则表达式修饰符

时间:2012-10-14 18:33:00

标签: regex yahoo-pipes

我在Yahoo Pipes上使用正则表达式匹配时遇到问题,好像他们没有使用普通的Perl语法。

在下面的屏幕截图中,“Test”完全匹配“Test”,而不是“test”,因此匹配区分大小写。如何使它不区分大小写?

enter image description here

/Test/i

不起作用):

1 个答案:

答案 0 :(得分:4)

我发现有所谓的“嵌入式修饰符”,所以

(?i)Test

现在匹配“test”以及“Test”: - )

来源: http://discuss.pipes.yahoo.com/Message_Boards_for_Pipes/threadview?m=tm&bn=pip-DeveloperHelp&tid=891&mid=893&tof=-1&rt=2&frt=2&off=1

http://perldoc.perl.org/perlre.html