Sometimes we need to allow users to enter information on a Nintex Form with some specific format.
In this sample I am showing a control to enter Time.
So the user needs to enter information with the format HH:MM and HH could be from 00 to 24, then as a separator and finally the minutes from 00 to 59.
You can easily solve it using a regular expression.
You can use a Single Line Textbox, so go to the Control Settings, set Use a regular expression to Yes and finally set the following Regular expression:
^([0-9]|0[0-9]|1[0-9]|2[0-3]):[0-5][0-9]$
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.