Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Check Character Length in Register User Form

KK
Regular Contributor
Regular Contributor

Hi.

In Register User Form, can I check if input character length is longer than 8?
Is it possible in Validation Condition?

KK_0-1710331943722.png

Best Regards,

4 REPLIES 4

PremMahadikar
Regular Contributor III
Regular Contributor III

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

PremMahadikar_0-1710344164233.png

 

If this reply answers your question, please consider selecting Accept As Solution and hit kudos.

CR
Regular Contributor III
Regular Contributor III

^[A-z]{7}$


Thanks,
Raghu
If this reply answered your question, Please Accept As Solution and hit Kudos.

KK
Regular Contributor
Regular Contributor

@PremMahadikar @CR 
Thanks, it worked.

CR
Regular Contributor III
Regular Contributor III

Thanks for confirmation @KK 


Thanks,
Raghu
If this reply answered your question, Please Accept As Solution and hit Kudos.