Mr Lucky Well-known member Dec 4, 2024 #1 I have a username validation regex which works fine. Same regex in a custom field does not. Does anyone know what I'm doing wrong?
I have a username validation regex which works fine. Same regex in a custom field does not. Does anyone know what I'm doing wrong?
P Paul B XenForo moderator Staff member Dec 4, 2024 #2 Regex for user name validation must include the start and end / : /^[a-z0-9 _-]+$/i Regex for custom profile and thread fields cannot use modifiers and must not include the start and end / : ^[a-zA-Z0-9 _-]+$ Upvote 0 Downvote
Regex for user name validation must include the start and end / : /^[a-z0-9 _-]+$/i Regex for custom profile and thread fields cannot use modifiers and must not include the start and end / : ^[a-zA-Z0-9 _-]+$