- or download this
$rx_4333 = /(?=\d{4}$)
(?: 4 (?: 3 (?: 3 (?: 3
...
| [5-9]
)
/x
- or download this
$rx_4333 = /(?=\d{4}$)
(?: 4 (?: 3 (?: 3 [3-9]
...
| [5-9]
)
$/x
- or download this
my @digits = $ProdBuild =~ /([0-9])([0-9])([0-9])([0-9])$/;
...
foreach (@pattern) {
print("Match: $_\n") if /$rx/;
}