Reputation: 17624
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?
/Test/i
does not work ):
Upvotes: 2
Views: 298
Reputation: 17624
I found out that there are so called "embedded modifiers", so
(?i)Test
matches now "test" as well as "Test" :-)
http://perldoc.perl.org/perlre.html
Upvotes: 4