Hello,
I am trying to build regex to allow only the following type of string: 9 digits followed by 2 letters followed by 4digits.
I came up with ^([0-9]{9})([A-Z]{2})([0-9]{4})$
but DocuSign doesn’t like it and an error message pops up: Save Error Some fields might be out of sync. The regular expression provided is not valid.
other types I have tried and failed:
^(\d{9}\d([A-Z]{2})\d{4})$ - also failed
^([0-9]{9})((\s)([a-zA-Z]{2})((\s)([0-9]{4})?$ (so this would mean there would be spaces in between numbers and letters
I think maybe something is not correct around letter validation?