Validation feedback

1
/file?guid=19703248378963285   now i was to show the validation of a. PAN as -should not contain special character b. Aadhar- should not contain special chararter(@,$,#,&,%) and alphabet How to do the validation like this?
asked
1 answers
1

Hi Riya,

 

You can use Regular expressions to match on certain characters.

 

Regex for Special Characters:

[!@#$%^&*()_+{}\[\]:;<>,.?~\\/-]

 

Regex for Special Characters and Alphabets:

[!@#$%^&*()_+{}\[\]:;<>,.?~\\/-a-zA-Z]

 

You can use these in the validation rules of the enitity or inside a microflow with the function isMatch(). 

answered