Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a text field that needs to remain only text or decimal. Here is the code that I'm currently using to replace everything except numbers and a decimal point. Issue is, I can't figure out a regex that will identify everything else

document.getElementById(target).value = newVal.replace(/\D[^\.]/g, "");

The \D works fine, but I've tried (?!.), (?!\.), [^.], [^\.] and so on...

Any suggestions for a regular expression that identifies positively with anything except a number or a decimal?

Thanks for the help

share|improve this question

1 Answer

up vote 24 down vote accepted

Use this:

document.getElementById(target).value = newVal.replace(/[^0-9.]/g, "");
share|improve this answer
Thanks, it works. – guildsbounty Dec 31 '10 at 20:36
5  
This actually allows several decimal points. – Hugo Jul 26 '12 at 18:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.