I can't seem to find a regex to use for a website sign-up form that doesn't require users to enter certain characters.
I need a regex which will allow only the following:
a-z
A-Z
0-9
*#_-
There doesn't have to be a number, no required capitals, no required special characters. Spaces are not allowed.
The minimum length is 8, max is 30 but I'm handling that in another part of the code.