Sure, the expression I used in vCAC for my text box was: ([a-z,A-Z,0-9]{1,5}) The first part of the expression [a-z,A-Z,0-9] states that the letters A-Z can be used, lower or upper case, as we...
See more...
Sure, the expression I used in vCAC for my text box was: ([a-z,A-Z,0-9]{1,5}) The first part of the expression [a-z,A-Z,0-9] states that the letters A-Z can be used, lower or upper case, as well as the numbers 0-9. The second section {1,5} controls the length, as the entry must be between 1 and 5 characters total to validate. If you plug it in to the site I mentioned above you can test your expression and how it evaluates. Hope that helps. -Jake