I want to use an ASP:RegularExpressionValidator to enforce a minimum character count (6) but only if the field is NOT empty.
Could anyone help me with the regex for this?
Try this regular expression:
^(?:.{6,}|)$