I have a regex currently that allows letters, numbers, underscore and hyphen. Also allows string to be only between 1 and 255 characters long. I need to add to this regex to allow colon and parenthesis. Please assist. I tried a lot of variations and am at the loss.Just adding : and () to the list is not doing the trick. So if someone checks against this regex, it should allow string like ABCabc123():_-
@"^[a-zA-Z0-9_-]{1,255}$"