I have a regular expression that looks like this:
[RegularExpression(@"\d{2}[-zZ][a-zA-Z0-9]{6,7}[-a-zA-Z0-9]{2,3}[a-zA-Z0-9]?[a-zA-Z0-9]?", ErrorMessage = "Please enter a valid part number.")]
That allows for part numbers like this 07-287370-002 or 11-16D897-007.
I would also like the regular expression to accept this specific value: ##-######-###
I am unsure of the syntax, any help is much appreciated.

