Created
January 9, 2022 19:27
-
-
Save robertsosinski/6b4f16730bbd932bf153f68b9e477d56 to your computer and use it in GitHub Desktop.
Validate Username
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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