Search Results

0
votes

How can I extract the values after = in my string with Perl?

Assuming your ordering was a typo: #!/usr/bin/perl use strict; use warnings; my $str='a=1 b=2 c=abc'; my @v; while ($str =~ /=(\S+)/g) { push @v, $1; } print join (',', @v); …