in reply to Problem with capturing all matches with regex
#!/usr/bin/perl use warnings; use strict; use feature qw{ say }; my $equation = '979x + 87y - 8723z = 274320'; my @parts; push @parts, "[$1 $2]" while $equation =~ /(.*?)([xyz])\s*/gi; say for @parts;
Or assing directly to the array:
my @parts = $equation =~ /(.*?)([xyz])\s*/gi; say for @parts;
($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem with capturing all matches with regex
by igoryonya (Pilgrim) on Oct 12, 2016 at 15:07 UTC | |
by AnomalousMonk (Archbishop) on Oct 12, 2016 at 16:25 UTC | |
by igoryonya (Pilgrim) on Oct 13, 2016 at 01:25 UTC |