Within a group of characters -must be at the beginning or at the end, otherwise it must be escaped.
So change it to
"^[a-zA-Z0-9/-]*"
Edit:
I would also suggest a binding at the end of the regex, otherwise it will also match as long as the first part is valid.
"^[a-zA-Z0-9/-]*$"
, + *. , Min/Max , {4,20}, 4, 20.