Hello,I have a text field where users enter a code consisting af one of
four letters, say B, C, D, or E, followed by 4 digits, e.g. B0123. I
know how to validate the pattern to get a character followed by 4 digits
using A9999 in the Value-->Validation Pattern. But that allows G1234,
and G is not an ``allowed'' letter.Now, I'd like to use something like
the following for the validation pattern in order to make sure that only
the 4 allowed letters are used:Validation Pattern: 'B'9999 | 'C'9999 |
'...