Skip to content

Instantly share code, notes, and snippets.

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 robertsosinski/6b4f16730bbd932bf153f68b9e477d56 to your computer and use it in GitHub Desktop.
Save robertsosinski/6b4f16730bbd932bf153f68b9e477d56 to your computer and use it in GitHub Desktop.
Validate Username
-- 1. must be between 3 and 20 characters,
-- 2. must be only:
-- a. lowercase letters,
-- b. numbers,
-- c. individual dashes.
-- 3. must start with a letter,
-- 4. must not end with a dash.
'^[a-z]([-](?![-])|[a-z0-9]){1,18}[a-z0-9]$'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment