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,
Check the link Regular Expression Demo
use the below reg exp
[a-z] + [^0-9\s.]+|.(?!\d)
Use this:
document.getElementById(target).value = newVal.replace(/[^0-9.]/g, "");
Removing only decimal part can be done as follows:
number.replace(/(\.\d+)+/,'');
This would convert 13.6667px into 13px (leaving units px untouched).
Try this:
document.getElementById(target).value = newVal.replace(/^\d+(\.\d{0,2})?$/, "");