Skip to content

Instantly share code, notes, and snippets.

@ssdev-95
Last active August 3, 2021 20:54
Show Gist options
  • Select an option

  • Save ssdev-95/4c58154218cc66aa53049347bda042ba to your computer and use it in GitHub Desktop.

Select an option

Save ssdev-95/4c58154218cc66aa53049347bda042ba to your computer and use it in GitHub Desktop.
Input Validation
import { ChangeEvent } from 'react';
function handleKeyUp(e: ChangeEvent<HTMLInputElement>) {
e.currentTarget.maxLength = 8;
let value = e.currentTarget.value;
value = value.replace(/\D/g, "");
setNewZip(value)
e.currentTarget.value = value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment