Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

regex - Regular Expression to accept all the decimals from 0 to 100

I want to modify my existing Regular Expression which accepts decimals from 0 to 99.99

d{0,2}(.d{1,2})?$ 

i want this to be accept

100
100.0
100.00

and should not accept

100.1
100.02
101

Can anyone help me modify the above RE

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

I guess it's best to add the test for 100 as a special case using |:

^(d{0,2}(.d{1,2})?|100(.00?)?)$ 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...