Help for this page

Select Code to Download


  1. or download this
    my $variable = '12345(checkthis)';
    my @digits; undef @digits;
    
    while ($variable =~ /\d/g) {  push @digits, $& }
    
  2. or download this
    my $variable  = '12345(checkthis)';
    my @digits; undef @digits;
    
    foreach (split '', $variable) {  push @digits, $_ if /\d/ }