Discuss Scratch

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?

jokebookservice1 wrote:

When you register, do they Scratch deny some characters (like emoji), and if so, is it possible to provide a list of characters allowed?

registration wrote:

Your username may only contain letters, numbers, - and _
jokebookservice1
Scratcher
1000+ posts

Chars allowed in username?

helloandgoodbye9 wrote:

jokebookservice1 wrote:

When you register, do they Scratch deny some characters (like emoji), and if so, is it possible to provide a list of characters allowed?

registration wrote:

Your username may only contain letters, numbers, - and _
Aha, thanks!

Just to check, it would be like the following regex..?

[a-zA-Z0-9_\-]+
Would match the whole username completely?

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?

jokebookservice1 wrote:

helloandgoodbye9 wrote:

jokebookservice1 wrote:

When you register, do they Scratch deny some characters (like emoji), and if so, is it possible to provide a list of characters allowed?

registration wrote:

Your username may only contain letters, numbers, - and _
Aha, thanks!

Just to check, it would be like the following regex..?

[a-zA-Z0-9_\-]+
Would match the whole username completely?

If that is incorrect, then I am probably misunderstanding

If it is correct, you helped a great deal
That seems right.
jokebookservice1
Scratcher
1000+ posts

Chars allowed in username?

helloandgoodbye9 wrote:

jokebookservice1 wrote:

helloandgoodbye9 wrote:

jokebookservice1 wrote:

When you register, do they Scratch deny some characters (like emoji), and if so, is it possible to provide a list of characters allowed?

registration wrote:

Your username may only contain letters, numbers, - and _
Aha, thanks!

Just to check, it would be like the following regex..?

[a-zA-Z0-9_\-]+
Would match the whole username completely?

If that is incorrect, then I am probably misunderstanding

If it is correct, you helped a great deal
That seems right.
Perfect, thanks
MegaApuTurkUltra
Scratcher
1000+ posts

Chars allowed in username?

jokebookservice1 wrote:

helloandgoodbye9 wrote:

jokebookservice1 wrote:

When you register, do they Scratch deny some characters (like emoji), and if so, is it possible to provide a list of characters allowed?

registration wrote:

Your username may only contain letters, numbers, - and _
Aha, thanks!

Just to check, it would be like the following regex..?

[a-zA-Z0-9_\-]+
Would match the whole username completely?

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

Powered by DjangoBB