1
0
Fork 0
mirror of synced 2024-11-19 07:15:36 -05:00

Fix username validation regex to correctly recognize hyphen (-)

This pull request corrects the regular expression used for username validation to correctly recognize hyphens (-).

Changes Made:
Changed the regex pattern from ^([a-zA-Z0-9_.-@])+$ to ^([a-zA-Z0-9_.\-@])+$.

Reason for Change:
In the previous regex, the hyphen (-) within the character class was interpreted as a range operator, not as a literal character. This caused usernames with hyphens to be incorrectly marked as invalid.
By escaping the hyphen (\-), the regex now correctly recognizes it as a literal character. This ensures that usernames containing hyphens are validated properly.

Points of Verification:
Confirmed that usernames containing hyphens are now correctly recognized and pass the validation.
Verified that other characters (letters, numbers, underscores, dots, and at signs) are still being properly validated.
This commit is contained in:
Shobu UMEMURA 2024-09-28 17:57:02 +09:00 committed by GitHub
parent 7134815ce6
commit 8fc518dba8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,7 +34,7 @@ import (
)
const (
usernameRegexp = `^([a-zA-Z0-9_.-@])+$`
usernameRegexp = `^([a-zA-Z0-9_.\-@])+$`
passwordMinLength = 6
certsArchiveFileName = "certs.tar.gz"
ccdArchiveFileName = "ccd.tar.gz"