Bug#825475: perl: regular expression wide character and problem with catch group $1

2016-05-27 Thread Niko Tyni
On Fri, May 27, 2016 at 08:16:02AM +0200, Leszek Dubiel wrote: > Package: perl > Version: 5.20.2-3+deb8u4 > Severity: normal > > Dear Maintainer, > $x =~ s/([[:alpha:]])([[:alpha:]])/lc($1) . lc($2); /ge; > $y =~ s/([[:alpha:]])([[:alpha:]])/my $z = $1; lc($z) . lc($2); /ge; > >

Bug#825475: perl: regular expression wide character and problem with catch group $1

2016-05-26 Thread Leszek Dubiel
Package: perl Version: 5.20.2-3+deb8u4 Severity: normal Dear Maintainer, *** Reporter, please consider answering these questions, where appropriate *** The program #!/usr/bin/perl use utf8; use locale; use strict; use warnings; binmode STDO