
nthiery at clipper
Aug 22, 1995, 10:25 AM
Post #1 of 3
(524 views)
Permalink
|
I think you already have this one, since I have seen some bug reports name as "comment and regexp...", but I did not have the time to check more, so well, sorry for the disturbance if it was one: ---- version: > /usr/local/bin/perl -v This is perl, version 5.001 Copyright 1987-1994, Larry Wall Perl may be copied only under the terms of either the Artistic License or the GNU General Public License, which may be found in the Perl 5.0 source kit. ---- my script bla: #!/usr/local/bin/perl -w $_="bla"; /(#bla)/x && print "coucou !\n"; ######## HERE ########## ---- bug: fregate-~/public_html/test-zone>bla /(#bla)/: unmatched () in regexp at bla line 5. ---- working variantes: /(bla)/x ... /(#bla)/ ... /(\#bla)/x ... it works also with an old version (5.000) people had also the same problem with patchlevel 1m that's all folks Good luck ! Thanks for all ! Isil
|