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