문제

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