The below regex expression checks for double hyphen
^[a-z0-9]+(?:-[a-z0-9]+)*$
I need to add character length check to {0, 63} to this expression. Where should I add them, Please help me out
I tried this,[[a-z0-9]+(?:-[a-z0-9]+)*]{0, 63} But it's not working