I would like to use regex to match a string of exactly 2 characters, and both of those characters have to be between 0 and 9. The string to match against would be coming from a single-line text input field when an ASP.NET MVC view is rendered
So far, I have the regex
[0-9]{2}
and from the following list of example string inputs
the following matches are returned when I apply the regex
So, I have kind of half the solution....what I actually want to enforce is that the string is also exactly 2 characters long, so that from the list of strings, the only one that should be matched is
12
I am an admitted amateur at regular expressions and am just using this to validate a card issue number on an ASP.NET MVC model as below....
[Required]
[RegularExpression("[0-9]{2}")]
public string IssueNumber { get; set; }
I'm sure that what i'm asking is quite simple but I wasn't able to find any examples that limited the length as part of the matching .
Thanks, in advance.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…