I'm trying to validate the variable name where it should not start with number but can include numbers
[RegularExpression(@"^[A-Z0-9_]+$", ErrorMessage = "Only Alphanumeric characters and Underscore ('_') is allowed. All letters must be in Upper Case.")]
The above expression doesn't restrict the starting string with Number.
^[^0-9]\w*$