#
TEXT
The TEXT component will open a dialog box with a alphanumeric keyboard, like this:
Everthing that applys to the NUMBER component also applies to the TEXT component.
#
Advanced
#
Filters
Filters allow you to validate the input using regular expressions:
#
Example
If you want to collect only values that start with a letter and it is followed by a number, you can use the following filter:
^[a-zA-Z]\d*$
This way it will accept A123
, B456
, C789
, etc. but it will not accept 123
, BCD
, etc.
Don't know how to use regular expressions?
▶️ The video will be available soon