#!/usr/bin/perluse warnings;use strict;my $text = "3 2 1 abc";while ($text =~ /(\d)/gc) { print "$1...\n";}