in reply to regex to match words and numbers

foreach my $i ( @chunks ) { next if $i !~ m/ ^ (?!\*) (?!(?!\d)\w) (?!\d+\.) /x; print $i; }