Let me define a min and max characters in the free text field.
Live
A
Anonymous
I would love to be able to choose the min. and max. numbers of characters in the text field. When I ask for a ID number, I know the exact number required.
12-02-2024 -
Activity
Newest / Oldest
Samy
Status changed to:
Live
Samy
We have released a new improvement for our free text field. It allows you to add a regex condition using the standard rules: regexr.com/
here's a regex pattern that enforces a minimum and maximum number of characters for a free text field:
^.{min,max}$
Replace min and max with the specific minimum and maximum character counts you want to enforce. For example, if you want to enforce a minimum of 5 characters and a maximum of 20 characters, the regex pattern would be:
Activity Newest / Oldest
Samy
Status changed to: Live
Samy
We have released a new improvement for our free text field. It allows you to add a regex condition using the standard rules: regexr.com/
here's a regex pattern that enforces a minimum and maximum number of characters for a free text field:
^.{min,max}$
Replace min and max with the specific minimum and maximum character counts you want to enforce. For example, if you want to enforce a minimum of 5 characters and a maximum of 20 characters, the regex pattern would be:
^.{5,20}$
Samy
Status changed to: Under review