Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

asp.net - regular expression to allow only specific numbers

I am looking to have a regular expression that allows only specific numbers to be entered, e.g. 2,4,5,6,10,18

I tried something like

"'2'|'4'|'5'|'6'|'10'|'18'"

and anything that i typed failed the regex and then the computer pointed its finger at me and laughed.

where am i going wrong?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The single quotes are unnecessary. The regex you are looking for is: ^(2|4|5|6|10|18)$.

The symbols ^ and $ denote the start and the end of the line, to prevent 121 from matching (since it contains 2).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...