I need a RegEx to check if an item order count is either 0 or between 2500 and 999999. Is this even possible to do?
Example: You can either order 0 (no items) or you have to make an order of 2500 or more items.
Update: This need to be a RegEx because it will be used in a validation attribute in MVC.
[RegularExpression(@"SomeRegExpression", ErrorMessage = "Min order error")]