I am poor with Regular expressions, following is the requirement. I will be using this with Joi validators.
ID :
- Should be alphanumeric
- Cannot have any special characters except dash and underscore (- and _)
- Cannot have - or _ consecutively (Example: this-id is ok but this--id is not.
Name:
- Should be alphanumeric
- Cannot have any special characters except dash and underscore (- and _), but space is allowed.
- Cannot have - or _ consecutively (Example: this-id is ok but this--id is not.