Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
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 ?
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:?
/[:ascii:]/i
/[:graph:]\s/i
Then if we want to exclude @ symbols, how about /[:graph:]\s^@/i ?
/[:graph:]\s^@/i
We use essential cookies to make this site work, and optional cookies to enhance your experience.
See further information and configure your preferences