[perl #60008] @array ~~ / regexp / do not work properly, look like array stratification there

2008-11-04 Thread [EMAIL PROTECTED] via RT
On Mon Oct 20 06:11:17 2008, ihrd wrote: > my @a = ('a', 'b' ); > say @a ~~ / 'b' /?? ':)' !! ':('; # :) > say @a ~~ / ^ 'b' /?? ':)' !! ':('; # :( > say @a ~~ / ^ 'a' /?? ':)' !! ':('; # :) > say @a ~~ / ^ 'a' $ / ?? ':)' !! ':('; # :( > They're all smiling as of r32328. Spas

[perl #60008] @array ~~ / regexp / do not work properly, look like array stratification there

2008-10-20 Thread via RT
# New Ticket Created by Ilya Belikin # Please include the string: [perl #60008] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=60008 > Hi, my @a = ('a', 'b' ); say @a ~~ / 'b' /?? ':)' !! ':('; # :) say @a ~~ / ^ '