Lack of interest [Suggestion] Disable/Enable Special Characters in Username

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

Fufu

Well-known member
I find it ugly (annoying) to have to list like below in the User Name Validation -> Disallow Words in User Names, instead of having a check box that says Disallow Special Charaters in User Names

!
@
#
$
%
^
&
*
(
)
-
_
=
+
[
{
]
}
|
\
,
<
.
>
/
?
"
'
;
:
`
~
 
Upvote 0
This suggestion has been closed. Votes are no longer accepted.
Yes :)

Edit: Found this old post by Shadab which has a few more.


RegEx = Regular Expression
Some very simple regular expressions to limit the usernames are:
  • /^[a-z]+$/i (only alphabets allowed)
  • /^[a-z\s]+$/i (alphabets & spaces allowed)
  • /^[a-z0-9]+$/i (alphanumeric characters only)
  • /^[a-z0-9\s]+$/i (alphanumeric & spaces)
 
Top Bottom