How to allow only numbers in textbox in reactjs using regular expression only?
textbox
reactjs
regular expression
A simple solution, using hooks:
const [age, setAge] = useState(); const handleChange = (e) => { const value = e.target.value.replace(/\D/g, ""); setAge(value); }; return ( );
Example: https://codesandbox.io/s/adoring-minsky-9sqvv