I want to validate a number using regex.. the condition is number can be from any negative 3 digit values to positive 3 digit.. but cannot be zero.
can someone please he
I used this with the .NET System.Text.RegularExpressions to match positive or negative decimals (numbers).
(\d+|-\d+)