Skip to content

Instantly share code, notes, and snippets.

@imliam
Last active June 27, 2017 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imliam/19649a8a9dff5cf2651a01f773f02d97 to your computer and use it in GitHub Desktop.
Save imliam/19649a8a9dff5cf2651a01f773f02d97 to your computer and use it in GitHub Desktop.

Regex to format and validate for atelier801.com usernames (including games by Atelier 801), with the following rules:

  • Must be between 3 and 20 characters
  • May only contain alphanumeric characters and underscores
  • First character must be alphabetical or a plus +
^[a-zA-Z+]{1}[a-zA-Z0-9_]{2,20}$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment