Iterate over matches with foreach and $_ and nested while loop : Loop « Regular Expression « Perl






Iterate over matches with foreach and $_ and nested while loop

   


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

my $text = "one, two, three, four";
while ($text =~ /\b(\w+)\b/g) {
    print "outer: matched: $&, extracted: $1 \n";
    while ($1 =~ /(\w)/g) {
        print "\tinner: matched $&, extracted $1 \n";
    }
}

   
    
    
  








Related examples in the same category

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