Examples
Only allow letters, numbers, exclamation point, and period | ^[a-zA-Z0-9!.]⋆$ |
At most 8 characters long | ^.,8$ |
Must start with a letter | ^[a-zA-Z] |
Must have a number | [0-9] |
Must end in -admin or -test | (-admin | -test)$ |
Must begin with three capital letters and an underscore | ^[A-Z] { 3 } _ |
See also
Bravura Security Fabric uses the ECMAScript regular expression grammar. For more information on regular expressions supported by Bravura Security Fabric, see:
The ECMA Script Language Specification at:
http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf
or
The Microsoft Developer Network (MSDN) TR1 Regular Expressions document at: