Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Yahoo Pipes 上使用正则表达式匹配时遇到了麻烦,似乎他们不使用正常的 Perl 语法。
在以下屏幕截图中,“Test”完全匹配“Test”,而不是“test”,因此匹配区分大小写。如何使它不区分大小写?
/Test/i
不工作):
我发现有所谓的“嵌入式修饰符”,所以
(?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