in reply to Re: Matching numeric value between two digits
in thread Matching numeric value between two digits
if ($_ =~ /\something(.*)somethingelse/i){ if (($1 >= 1) and ($1 <= 75)) { $a = $1; if ($a =~ /^\d+$/){ ... } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Matching numeric value between two digits
by Crackers2 (Parson) on Feb 04, 2013 at 23:27 UTC |