Iterate over matches with while and $1 : Loop « Regular Expression « Perl






Iterate over matches with while and $1

   

#!/usr/bin/perl
use warnings;
use strict;

my $text = "one, two, three, four";

while ($text =~ /\b(\w+)\b/g) {
    print $1, "\n";
}

   
    
    
  








Related examples in the same category

1.Iterate over matches with foreach and $_ and nested foreach
2.Iterate over matches with foreach and $_ and nested while loop
3.Zero width loop
4.A program that loops using a pattern.