in reply to Re: Re: The third 'if'
in thread The third 'if'
Your match in line 39 will be true if there is any digit in $value, if you want for only digits try /^\d+$/ instead, but in your case (where you know $value will have a number in it) you don't actually need that if statement.
|
|---|