Can someone let me know what would be the regex expression for below requirement:
the attribute should not contain special characters such as !,@,#,$,%,^,&,*,~,+,|,\,/,<,> or should not contain any Numbers
or
how can I implement this logic in DVF (Data Validation Function)
have tried with below regex :
not regexp(attributes.Name.value, '[a-zA-Z-\\s]+$')
but all the special characters are being rejected for this,
tried with below expression also, but DVF not working for this case:
regexp(attributes.Name.value, '[!@#$%^&*~+|\\/]') or regexp(attributes.Name.value, '[0-9]')
Can some one please suggest what can be done for it?