Skip to content

Instantly share code, notes, and snippets.

@vunguyen9404
Created May 9, 2023 20:21
Show Gist options
  • Select an option

  • Save vunguyen9404/d7a271d0f6b61c81c6060087d38568f6 to your computer and use it in GitHub Desktop.

Select an option

Save vunguyen9404/d7a271d0f6b61c81c6060087d38568f6 to your computer and use it in GitHub Desktop.
Validate Username
const validateUsername = (username: string): boolean => {
const regex = new RegExp("^(?=[a-zA-Z0-9._]{3,30}$)(?!.*[_.]{2})[^_.].*[^_.]$");
return regex.test(username);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment