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
629 views
in Technique[技术] by (71.8m points)

REGEX for whole, positive number

I am trying to create an input regex that will only accept whole, positive numbers. So far I have:

[^[+]?d+([.]d+)?$]

But users can still enter, say, .4. How can I alter this to disallow floats? Thanks!

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

I think you try to filter only positive integers.

^[1-9]d*$

allows only positive integer numbers. What is the regex for "Any positive integer, excluding 0" will also help you.


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

...