5.12.1.10.  regular expression

Examples:

  • Only number allowed

    [0-9]*

  • Only letters allowed

    [A-Za-z]*

  • Tilde not allowed

    [^~]*

You can use https://www.regexpal.com, for example, to test RegExp.