Click HERE to see how Saviynt Intelligence is transforming the industry. |
03/13/2024 05:12 AM
Hi.
In Register User Form, can I check if input character length is longer than 8?
Is it possible in Validation Condition?
Best Regards,
Solved! Go to Solution.
03/13/2024 08:37 AM
Hi @KK ,
For this use case in user request form, please use regex parameter in the dynamic attribute.
Pass the below code: Regex for alphanumeric of length 7
^[A-Za-z0-9]{7}$
Saviynt regex functionality: Link
If this reply answers your question, please consider selecting Accept As Solution and hit kudos.
03/14/2024 07:10 AM
^[A-z]{7}$
03/18/2024 07:25 AM
@PremMahadikar @Raghu
Thanks, it worked.
03/18/2024 07:53 AM
Thanks for confirmation @KK