Hi,
I hope we can start share a collection of some regex for username here;
----------------------------------------------------------------
From: Title
Descriptions: Accept only alphanumeric values and hyphen, underscore or period (-/_/.). Start from alphanumeric character not a hyphen or underscore.
^[a-z][-_a-z0-9]*$
-----------------------------------------------------------------
Descriptions: It verifies that: - Only letters, numbers and period,hyphen & underscore are allowed - No two different symbols may follow each other - Cannot begin or end with a symbol,hyphen, underscore or dot.
Problem: No character limitation.
^((([A-Za-z0-9]+_)|([A-Za-z0-9]+\-)|([A-Za-z0-9]+\.))*([A-Za-z0-9])){5,15}$
-------------------------------------------------------------------
Hope u guys can add more options, thanks
I hope we can start share a collection of some regex for username here;
----------------------------------------------------------------
From: Title
Descriptions: Accept only alphanumeric values and hyphen, underscore or period (-/_/.). Start from alphanumeric character not a hyphen or underscore.
^[a-z][-_a-z0-9]*$
-----------------------------------------------------------------
Descriptions: It verifies that: - Only letters, numbers and period,hyphen & underscore are allowed - No two different symbols may follow each other - Cannot begin or end with a symbol,hyphen, underscore or dot.
Problem: No character limitation.
^((([A-Za-z0-9]+_)|([A-Za-z0-9]+\-)|([A-Za-z0-9]+\.))*([A-Za-z0-9])){5,15}$
-------------------------------------------------------------------
Hope u guys can add more options, thanks