Hi mendix community, In one of the strings : Although special characters are allowed however only special characters can not be accepted. There must be some alphanumeric values as well. Can you help me achieve this? Thanks in advance!
asked
Nidhi Abhishek
1 answers
1
HI Nidhi ,
You can try using a regex that expects at least 1 alphanumeric value. Example : isMatch($value,'^[0-9]+$') This way you can check if the string entered by the user has only special characters. Hope this helps!