in reply to Is your Perl broken? Bug help needed.
2;0 juerd@ouranos:~$ perl -l while ("this_is_broken_" =~ /(.*?)_/gs) { print "($1) "; } (this) 2;0 juerd@ouranos:~$ perl -l while ("this_is_broken_" =~ /(.*?)_/g) { print "($1) "; } (this) (is) (broken) 2;0 juerd@ouranos:~$ perl -v This is perl, v5.6.1 built for i386-linux =cut :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Is your Perl broken? Bug help needed.
by theorbtwo (Prior) on Jan 10, 2002 at 01:33 UTC |