Discuss Scratch
- Discussion Forums
- » Questions about Scratch
- » Chars allowed in username?
- jokebookservice1
-
Scratcher
1000+ posts
Chars allowed in username?
When you register, do they Scratch deny some characters (like emoji), and if so, is it possible to provide a list of characters allowed?
Last edited by jokebookservice1 (June 24, 2016 18:44:08)
- helloandgoodbye9
-
Scratcher
1000+ posts
Chars allowed in username?
When you register, do they Scratch deny some characters (like emoji), and if so, is it possible to provide a list of characters allowed?
Your username may only contain letters, numbers, - and _
- jokebookservice1
-
Scratcher
1000+ posts
Chars allowed in username?
Aha, thanks!When you register, do they Scratch deny some characters (like emoji), and if so, is it possible to provide a list of characters allowed?Your username may only contain letters, numbers, - and _
Just to check, it would be like the following regex..?
[a-zA-Z0-9_\-]+
If that is incorrect, then I am probably misunderstanding

If it is correct, you helped a great deal

- helloandgoodbye9
-
Scratcher
1000+ posts
Chars allowed in username?
That seems right.Aha, thanks!When you register, do they Scratch deny some characters (like emoji), and if so, is it possible to provide a list of characters allowed?Your username may only contain letters, numbers, - and _
Just to check, it would be like the following regex..?Would match the whole username completely?[a-zA-Z0-9_\-]+
If that is incorrect, then I am probably misunderstanding
If it is correct, you helped a great deal
- jokebookservice1
-
Scratcher
1000+ posts
Chars allowed in username?
Perfect, thanksThat seems right.Aha, thanks!When you register, do they Scratch deny some characters (like emoji), and if so, is it possible to provide a list of characters allowed?Your username may only contain letters, numbers, - and _
Just to check, it would be like the following regex..?Would match the whole username completely?[a-zA-Z0-9_\-]+
If that is incorrect, then I am probably misunderstanding
If it is correct, you helped a great deal

- MegaApuTurkUltra
-
Scratcher
1000+ posts
Chars allowed in username?
Aha, thanks!When you register, do they Scratch deny some characters (like emoji), and if so, is it possible to provide a list of characters allowed?Your username may only contain letters, numbers, - and _
Just to check, it would be like the following regex..?Would match the whole username completely?[a-zA-Z0-9_\-]+
If that is incorrect, then I am probably misunderstanding
If it is correct, you helped a great deal
[a-zA-Z0-9_\-]{3,20}Takes length limits into account

- Discussion Forums
- » Questions about Scratch
-
» Chars allowed in username?