How can I access capture buffers in brackets with quantifiers?
#!/usr/local/bin/perl
use warnings;
use 5.014;
my $string = '12 34 56 78 90';
say $string =~ s/(?:(\S+)\s){2}/$1,$2,/r;
# Use of uninitialized value $2 in concatenation (.) or string at ./so.pl line 7.
# 34,,56 78 90
With @LAST_MATCH_START and @LAST_MATCH_END it works*, but the line gets too long.
Doesn't work, look at TLP's answer.
*The proof of the pudding is in the eating isn't always right.
say $string =~ s/(?:(\S+)\s){2}/substr( $string, $-[0], length($-[0]-$+[0]) ) . ',' . substr( $string, $-[1], length($-[1]-$+[1]) ) . ','/re;
# 12,34,56 78 90
length($-[0]-$+[0])is an odd statement, since$-[0]and$+[0]will be two numbers, denoting the offset in the string where the first match ($1) starts and ends. It will always return the same number, which is the length of the number of characters matched by the regex, e.g.length(4 - 7)will return 1.length(44 - 47)will return 1. – TLP Jul 8 '11 at 14:23length(-3)returns 2. – TLP Jul 8 '11 at 14:44