This regular expresion does not work when I enter 100 for some reason but 100.0 is ok.
^(?!0*(.0+)?$)(\d+|\d*\.\d+)$
Any ideas why this is happening?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s your negative lookahead which causes the problem:
The dot in here means any character – you want to escape it:
Or even simpler with a positive lookahead: