Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
513 views
in Q2A Core by
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

a b c d e f g h i j k l m n o p q r s t u v w x y z

1 2 3 4 5 6 7 8 9 0

I have problems with special characters =(

More information: http://www.question2answer.org/qa/48654
Q2A version: 1.7

1 Answer

+2 votes
by
Create a filter plugin, see http://www.question2answer.org/qa/27723/dont-allow-people-to-register-with-some-usernames-like-admin

For your specific case you probably want a regex like

/[^A-Za-z0-9]/

If you match that, it means there is a non-alphanumeric character in there.
by
Please add this function in core 1.8. Use for login name /[^A-Za-z0-9]/
...