I have trouble using regex matching on Yahoo Pipes, seems like they don't use the normal Perl syntax.

In the following screenshot "Test" matches exactly "Test", not "test", so matching is case sensitive. How to make it case insensitive?

enter image description here

/Test/i

does not work ):

有帮助吗?

解决方案

I found out that there are so called "embedded modifiers", so

(?i)Test

matches now "test" as well as "Test" :-)

Source: 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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top