# InputMaskRegEx

1. Input Mask Regex

You can mask the uinput of a textbox by using a regular expression.

You can find further information for for the Input Mask itself \[here]\(<https://github.com/RobinHerbots/Inputmask>)

If you want to lear more about regex, take a look \[here ]\(<https://regex101.com/>)

Examples:

This allows only non-capital and capital letters (azA-Z) numbers (0-9) and the underscore (\_). But no special characters (like ö, &, %, @,...).

```
^[_0-9a-zA-Z]*$
```

Example 2. This forces the input to begin with abc, followed by any a-Z0-9

```
^abc[_0-9a-zA-Z]*$
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://brixxbox.gitbook.io/brixxbox-documentation/configuration/app-editor/app-editor-properties/inputmaskregex.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
