/    Sign up×
Community /Pin to ProfileBookmark

regex for numbers any only one decimal

function isNumberKey(evt)
{
var charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode != 46 && charCode > 31
&& (charCode < 48 || charCode > 57))
return false;
return true;
}
this work well for numbers but it allows more then 1 decimal. i just one this to allow only one decimal. any help plz

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@SempervivumJan 14.2020 — This checks only the character currently being input. I guess you have applied this to an input field where you want to allow the user only one digit?
Copy linkTweet thisAlerts:
@NogDogJan 14.2020 — "^[0-9]*(.[0-9]+)?$" perhaps?
Copy linkTweet thisAlerts:
@HarshShahJan 29.2020 — I try this code this can be work.

You must try it.

^(d+)?([.]?d{0,2})?$
×

Success!

Help @malikabk spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 4.19,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...