I am trying to modify this Regex so that you get numbers greater or equals 1 or less than or equals to 10. This Regex allows >= 0 or <= 10.
I have a text field on a form that takes numbers equals or greater than 0 and less than 11. I could use IF's and logical operators, TryParse but I kinda like the Regex.
@"^\d$|^[1][0]$"

int result; if (!int.TryParse(myStr, out result) || result < 1 || result > 10) { /* error */ }– Kieren Johnstone Nov 22 '12 at 8:44