I have configured one text element and I want to enter the number in it in this “+91878623746” format only. I want to restrict this text field to accept any alphabet in it. How can I do this?
2 Likes
Hi @Chitransh_Varshney, Welcome to the Vahana Community!
You can restrict your user from entering only the numerical values through Regex in the Data properties of the Element. For this use-case, you can use :
^[6-9]\d{9}$
2 Likes