Reply to thread

Yes, usernames are my primary concern.


Can you give us an example username regex for basic alpha numeric and spaces?


Could we just use something like /[:ascii:]/i - would that work? Would we be better using /[:graph:]\s/i to avoid control characters included in :ascii:?


Then if we want to exclude @ symbols, how about /[:graph:]\s^@/i ?


Back
Top Bottom