oren — 1/20/2022, 8:09:39 PM

This is the regex that wasteof uses to check usernames:

^[a-z0-9_\\-]{1,20}$ 
♥ 2 ↩ 0 💬 1 comment

comments

lily:

for people who don’t understand regex:

matches any of a through z, 0 through 9, _ and -, and is at least 1 character but not more than 20

1/25/2022, 7:43:06 AM