any number rege code example Example 1: regular expression number from 1 to 100 Click to copy^[1-9][0-9]?$|^100$ Example 2: regex for numbers Click to copyRegex regex = new Regex(@"^\d$");