How can i implement data validation for a text input field in OutSystems to ensure that the entered value is a valid email address? Provide a step-by-step solution
Hi sunil
you can use regex pattern for email validation, such as ^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$ or you can make your own regex pattern.
Hope it helps
Thanks
Arun
Hi Arun
Thanks for the quick reply
It worked for me.