( my @a = `route print`=~ m!0.0.0.0!g ) > 3 #### ( () = `route print`=~ m!0.0.0.0!g ) > 3 #### my $n = $str =~ m/this/g; #### my $n = () = $str =~ m/this/g; my $n = grep 1, $str =~ m/this/g; my $n = map $_, $str =~ m/this/g; #### my $n = 0; ++$n while $str =~ m/this/g;
## ( () = `route print`=~ m!0.0.0.0!g ) > 3 ##
## my $n = $str =~ m/this/g; ##
## my $n = () = $str =~ m/this/g; my $n = grep 1, $str =~ m/this/g; my $n = map $_, $str =~ m/this/g; ##
## my $n = 0; ++$n while $str =~ m/this/g;